只返回一個行我有此查詢:爲什麼正在從MySQL查詢
mysql_query("SELECT tre.TrainerEducationID, tge.EducationName, tre.EducationNote
FROM trainereducation tre
INNER JOIN trainingeducation tge ON
(tre.EducationID = tge.EducationID)
WHERE tre.TrainerID = '$id'");
它顯然只返回一個單列,即使有超過2排在TrainerEducation表。
這是爲什麼?
它不應該返回多個行嗎?
你是如何獲取行?您需要獲取每行直到它返回false,然後您知道沒有更多行。 – Halcyon 2011-04-24 21:48:04
我使用mysql_fetch_array – user722769 2011-04-24 21:48:57
ohhh我c,所以每個獲取只有一行?每一行都是數組? – user722769 2011-04-24 21:49:16