Yang ini akan mendapatkan posting Anda dengan tiga komentar terbaru per posting, dengan asumsi tabel Anda terlihat seperti itu:
pos :id
, post_text
komentar :id
, post_id
, comment_text
SELECT id, post_text, comment_text
FROM
(
SELECT p.id, p.post_text, c.comment_text
CASE
WHEN @id != p.id THEN @row_num := 1
ELSE @row_num := @row_num + 1
END AS rank,
@id := p.id
FROM post p
LEFT JOIN comment c ON ( c.post_id = p.id )
JOIN ( SELECT @id:=NULL, @row_num:=0 ) x
ORDER BY p.id,
c.id DESC -- newest comments first
) y
WHERE rank <= 3;
Sub-kueri digunakan untuk mendapatkan komentar terbaru terlebih dahulu dan menomorinya per pos, sedangkan pilihan luar menghapus komentar lama.