有人能告诉我为什么这个 sql 查询不执行吗?
SELECT t_ads.*, t_adpics.picfile,
FROM t_ads
LEFT JOIN t_adpics ON t_ads.adid = t_adpics.adid AND t_adpics.isevent = '0'
LEFT JOIN t_featured ON t_ads.adid = t_featured.adid AND t_featured.adtype = 'A'
WHERE (a.adtitle LIKE '%findandpost%' OR a.addesc LIKE '%findandpost%')
AND a.enabled = '1'
AND a.verified = '1'
AND a.expireson >= NOW()
AND a.paid <> '0'
AND (t_featured.adid IS NULL OR t_featured.featuredtill < NOW())
GROUP BY t_ads.adtitle
ORDER BY RAND() LIMIT 0, 50
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM t_ads LEFT JOIN t_adpics ON t_ads.adid = t_a' at line 4