0
我有三張表我試圖從結果中拉出來,但是卻是空手而歸。這裏是我的查詢:mysql查詢沒有返回想要的結果
SELECT f . *, o . *, u.username, COUNT (o.order_id) as cnt
FROM products f, orders o, users u
WHERE f.product_id=o.product_id
AND f.user_id = u.id
AND (f.title LIKE '%hlt%' OR f.description LIKE '%hlt%' OR u.username LIKE '%hlt%')
LIMIT 5
,這是一個沒有返回結果雖然肯定是有符合此條件的(雖然顯然不是因爲我已經寫它)記錄。
謝謝你的幫助和建議。
沒有您的表架構和示例數據,可以提供很多幫助。 –