0
我有兩個表。 Table_1有這個字段。MySQL查詢不返回任何內容或返回錯誤的數據
table_1_id
name
image
adres
TABLE_2
table_2_id
name
email
phone
comment
datetime
need_id
我要讓我的ID_1
形式table_1
點擊加載我從table_2
具有table_1_id = 1
我與此查詢
SELECT t1*, t2.* FROM table_1 t1, table_2 t2
WHERE t1.table_1_id = t2.need_id ORDER BY `DateTime` DESC
嘗試了所有行
並顯示空白頁。然後我試圖這樣
SELECT t1.*, t2.* FROM table_1 t1
JOIN table_2 t2 ON t1.table_1_id = t2.need_id ORDER BY ` DateTime` DESC
這一切我點擊返回從數據庫中第一條結果就是這樣。
它的工作完美。謝謝! – 2014-12-02 15:18:24