我有三张表我试图从中提取结果,但我空手而归。这是我的查询:
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
尽管肯定有符合此标准的记录(尽管显然不是我写的那样),但这没有返回任何结果。