Jump to content

How to have each row contain the left joined data that applies to it


sKunKbad

Recommended Posts

I'm trying to get all of my rows to have the category IDs that belong to them, but I'm not doing it right. My query:

 

SELECT l . * , c.id AS category_id
FROM listings l
LEFT JOIN categories c ON l.id = c.id
LIMIT 0 , 30

 

There are only two categories, and four listings. The first two listings have the correct category id in the result row, but the last two listings have NULL. Is there a way to have the category ids in all of the rows?

Link to comment
Share on other sites

Hi

 

If the data is there your SQL should provide what you want.

 

You you post the data on here.

 

However I am not sure you are joining on the correct columns. You are joining on l.id = c.id, just to return c.id as the category id when you could just return l.id and not do the join.

 

All the best

 

Keith

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.