Hi,
Is it possible to print out (PHP) all my blog posts + associated comments via one sql query?
If so, how?
I was thinking in this direction:
SELECT p.post_id, p.title, c.comment_body
FROM posts p
LEFT JOIN comments c
ON c.parent_id = p.post_id
But this didn't work out as I expected