私は2つのテーブルを持っています:
テーブル: series
:
'id', 'series','thumbnail'
テーブル: videos
:
'name','ref','sID'
sID はid
in tableの外部キーですseries
。series
tableの上位 5 行が必要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