我一直在尝试使用以下 MySQL:
SELECT distinct(photos.id)
, photos.file
, photos.tags
, photos.desc
, photos.ratio
, tags.bid
, tags.tagname_id
FROM photos
, tags
WHERE photos.trending=1
AND tags.pid=photos.id
ORDER BY RAND()
LIMIT 10
我尝试使用DISTINCT
来防止重复条目,但它似乎不适用于我的情况。
让它发挥作用的最佳方法是什么?