我試圖在單個php文件中連接兩個數據庫,並嘗試通過連接兩個數據庫的表來檢索數據。這是我的代碼在單個PHP文件中連接兩個數據庫
require_once "connect.php";
require_once "connect_college.php";
$sql = "select * from college_db.students join mini-project.exam on students.adno=exam.adno and students.receipt=exam.receipt ";
if (!mysql_query($sql))
{
die('Error');
}
else
{
header("Location: generate.php");
exit();
}
Mysql查詢未運行。 college_db和mini-project是兩個數據庫。
您不能加入由2個不同的數據庫連接或服務器上的數據,你將不得不運行在數據庫服務器選擇查詢得到的結果到一個數組或W/E,然後運行數據庫服務器B. – Prix
秒查詢可能重複[你如何連接到單個網頁上的多個MySQL數據庫?](http://stackoverflow.com/questions/274892/how-do-you-connect-to-multiple-mysql-databases-on-a -single-page) –
你在'mysql_error()'中有什麼? –