Jump to content

Left join help


bfsog

Recommended Posts

Hello.

 

I have 2 tables. content_posts and content_comments

 

What I am trying to do is extract all the columns from content_posts and the number of comments column from content_comments.

 

For instance, I have a content_post row with 3 comments, so all columns from content_posts and one column from content_comments should be returned.

 

My current query is:

SELECT content_posts.entry_id, content_posts.entry_date, content_posts.entry_title, content_posts.entry_text, content_posts.entry_user_date, content_posts.entry_description FROM content_posts LEFT JOIN content_comments ON content_posts.entry_id = content_comments.entry_id GROUP BY content_posts.entry_id

however this isnt really working, it does not return anything from content_comments

 

My schemas are below

 

content_posts

entry_id [int, auto inc, primary]

entry_date [timestamp]

entry_title [varchar]

entry_text [text]

 

content_comments

comment_id [int, auto inc, primary]

entry_id [int, acts as foreign key]

blah blah blah.. [the rest is not important?

 

Any help is appreciated.

Link to comment
Share on other sites

I dont need anything from the second table though, just how many comments it has for each content_posts row

 

So, my query needs to

 

1: Select all rows from content_posts

2: For each row from content_posts get the number of comments it has from content_comments

 

Right now I am using 1 queries to solve this, any ideaS?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.