我有两张桌子:
表series
::
'id', 'series','thumbnail'
表videos
::
'name','ref','sID'
sID 是id
in table的外键series
。我想要 table 的前 5 行,每个 fromseries
的第一行。ref
videos
但是,使用我的 SQL:
SELECT `series` , `thumbnail` , `ref`
FROM `series`
LEFT JOIN `videos` ON `videos`.`sID` = `series`.`id`
ORDER BY `series`.`id` DESC
LIMIT 0 , 5
我最终得到来自 的第一行series
,但重复了 5 次,使用不同的参考:
Youve Already Got It, image.jpg, fe4
Youve Already Got It, image.jpg, 79c57
Youve Already Got It, image.jpg, bd2
Youve Already Got It, image.jpg, ff15c
Youve Already Got It, image.jpg, 2ce