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?
you must use left join
instead of right join
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 :)
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;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With