我需要從一個查詢中獲取結果並將其彈出到另一個查詢中。php使用上一個查詢的結果在另一個查詢中
第一查詢
$query = 'SELECT * FROM singleprop.jos_mls WHERE MSTMLSNO = ' . $mlsnum . ';';
$result = mysql_query($query);
$row = mysql_fetch_row($result);
第二查詢
$aquery = 'SELECT * FROM singleprop.jos_agents WHERE AGTBRDIDMM = ' . $row[0] . ';';
$aresult = mysql_query($aquery);
$agent = mysql_fetch_row($aresult);
我知道JOIN
,但不知道如何與第3臺應用它。我的模特與$this->
有什麼關係?
mysql_ *功能
AGTBRDIDMM
在PHP已經過時。請更新您的代碼以使用mysqli_ *的pdo_mysql [http://php.net/manual/en/function.mysql-query.php](http://php.net/manual/en/function.mysql-query .php) – shawndreck在附註中,建議您停止使用'mysql_ *'並開始使用'PDO' - http://php.net/manual/en/book.pdo.php,因爲前者已被棄用。 –
另一方面,你可以使用'JOIN'。發佈模式有幫助 – Kermit