Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Selecting all items in one table and join with another table, allowing nulls

Tags:

sql

mysql

I have a requirement to select all values from the table birds (basically all birds), and then joining with another table which tracks who likes that bird.

So I want the query to return all birds, and ids of records where people like that bird. And if there is no record of anyone liking this bird, then that field should be null.

My current query isn't getting the nulls. Here it is:

select  bird_name, member_id 
from birds  
right join bird_likes on birds.bird_id = bird_likes.bird_id 
where member_id = 2 ;

What could I do to make sure each row in the birds table is getting displayed once?

like image 850
Genadinik Avatar asked Mar 10 '11 20:03

Genadinik


1 Answers

you must use left join instead of right join

The different joins

inner join : keep only the rows where there's data in both table

left join : keep all the rows of the left table and add what is possible from the right one

right join : keep all the rows of the right table and add what is possible from the left one

The left table is always the table we already have and the right table is the one we are joining with.

For the record, there is also a cross join which joins each row in the left table with each row in the right table, but this one isn't used very often.

I hope all this is now clearer for you :)

Corrected query

select  bird_name, member_id 
from birds  
left join bird_likes on birds.bird_id = bird_likes.bird_id 
where member_id = 2;

Be aware that this assumes that the column member_id is in the bird table, otherwise you can keep the condition like this :

select  bird_name, member_id 
from birds  
left join bird_likes on 
    birds.bird_id = bird_likes.bird_id and
    bird_likes.member_id = 2;
like image 110
krtek Avatar answered Nov 15 '22 09:11

krtek