Jump to content

Don't understand query (JOIN with NULL)


MDanz

Recommended Posts

The query below is correct.  It returns the rows `paul` and `rick` because they have the highest rating of the child rows.  This was solved for me with the below link.  I am having trouble understanding the query.  I understand joins, what i don't understand is `t2.rating is null`? 

 

http://sqlfiddle.com/#!2/97e60/2

 

 

 

 

 select t1.* from mytable t1
        left join mytable t2
        on t1.parentid = t2.parentid and t1.rating < t2.rating
        join mytable parents
        on parents.id = t1.parentid
        where t2.rating is null AND parents.name like '%mike%'

 

`t1.rating < t2.rating` attaches the highest rated values to the LEFT table.  I know `t2.rating is null` means t2.rating is false but i have no idea what it is doing in the query?  Does that mean it removes from t1 where there isn't a match in the LEFT JOIN query?

 

my head hurts... the simpler the explanation the better.

Link to comment
Share on other sites

The query simply lines up each matching parentid row, pairwise -- then it checks to see which rating column is bigger.  Since you want to find the largest one, that's the one where there is no larger value; and in a LEFT JOIN, that's where the rating is NULL.

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.