Denne skal få dine indlæg med de tre seneste kommentarer pr. indlæg, forudsat at dine tabeller ser sådan ud:
indlæg :id
, post_text
kommentar :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;
Underforespørgslen bruges til at hente de seneste kommentarer først og nummerere dem pr. indlæg, mens den ydre markering fjerner ældre kommentarer.