Jump to content

[SOLVED] all inclusive left joins


Crusader

Recommended Posts

How can I do a LEFT JOIN with a where on the right and still include every value of the left table?

 

SELECT i.`integer`, ui.`seen` FROM `integers` AS i LEFT JOIN `user_integers` AS ui ON (i.`integer` = ui.`integer`) WHERE i.`category` = 1 AND ui.`user_id` = 1

 

this results in something like this:

 

integer seen
1       1
2       1
3       1

 

but I want it to display everything regardless of the seen.

 

integer seen
1       1
2       1
3       1
4       null
5       null
6       null

 

The tables are built like this:

 

integers;
integer category
1       1
2       1
3       1
4       1
5       1
6       1
7       2
8       2

user_integers;
id user_id integer seen
1  1       1       1
1  1       2       1
1  1       3       1
1  2       2       1
1  2       1       1

 

Thanks

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.