Questo dovrebbe ricevere i tuoi post con i tre commenti più recenti per post, supponendo che le tue tabelle assomiglino a questa:
pubblica :id
, post_text
commenta :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;
La sottoquery viene utilizzata per ottenere prima i commenti recenti e per numerarli per post, mentre la selezione esterna rimuove i commenti più vecchi.