I'm relatively new to MySQL and I am stumped with this section.
I am building a simple blog page which will display a blog along with the comments associated with it. I currently have two tables to handle this data:
Blogs
.blog_id (primary), .blog_title, .blog_date, .blog_post
Comments
.comment_id (primary), .blog_id, .comment_name, .comment
What I am trying to do is pull a specific blog which matches an ID and pull the comments tied to that blog. Here is my query:
SELECT * FROM blogs JOIN comments ON blogs.blog_id=comments.blog_id WHERE blogs.blog_id = $active ORDER BY comments.comment_id
This query results in pulling the correct information but if there are two comments on the blog, it will display the blog and everything twice as it's looping through the comments. I want to display all the blog information once and then have it loop through the comments.
I hope I explained this clearly. Any help would be fantastic. Thank you.