1

Topic: INNER JOIN and LEFT JOIN

Just trying to get a clearer idea of how these two actually differ. Been having a read of the pgsql docs, but I'm still very little the wiser. big_smile What exactly are the real world differences? Are there certain scenarios where one or the other should not be used? Any testing I've done always seems to work just as happily with a left join as an inner, so is there a real need to use inner, (as from what I could understand of the docs, an inner join is initially made on a left join anyhow)?

Cheers in advance for any 'drum it into the muppet explanations'. big_smile


Matt

p.s: Btw, is it just me, or do some queries really need a twisted logic to get correct? big_smile

Re: INNER JOIN and LEFT JOIN

http://dev.mysql.com/doc/refman/5.0/en/join.html

#

If there is no matching row for the right table in the ON or USING part in a LEFT JOIN, a row with all columns set to NULL is used for the right table. You can use this fact to find rows in a table that have no counterpart in another table:

SELECT left_tbl.*
  FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id
  WHERE right_tbl.id IS NULL;

This example finds all rows in left_tbl with an id value that is not present in right_tbl (that is, all rows in left_tbl with no corresponding row in right_tbl). This assumes that right_tbl.id is declared NOT NULL. See Section 6.2.8, ?LEFT JOIN and RIGHT JOIN Optimization?.

That's the major difference

Re: INNER JOIN and LEFT JOIN

http://www.codinghorror.com/blog/archives/000976.html

smile

Post hoc ergo propter hoc

4 (edited by MattF 2008-01-26 20:25)

Re: INNER JOIN and LEFT JOIN

So it basically gives a tad more versatility then, if I've understood that correctly? i.e: you can check for the absence of a match as well as an actual match?

Is it okay then to generally use left joins only for general straight match type queries? (Which I'm already guilty of doing upto just). big_smile


Thanks again Smartys,

Matt

5

Re: INNER JOIN and LEFT JOIN

Cheers. Just having a look now. Love that domain name. big_smile