What is the difference between left join and left outer join?
|
As per the documentation: FROM (Transact-SQL):
The keyword For instance, the entire type-part of the
Here's a list of equivalent syntaxes:
Also take a look at the answer I left on this other SO question: SQL left join vs multiple tables on FROM line?. |
|||||||||||||||||||
|
At the top level there are mainly 3 types of joins:
Points to be noted:
For those who want to visualise these in a better way, please go to this link: A Visual Explanation of SQL Joins |
|||||||||||||||||||
|
|
Nothing. They are equivalent. |
|||||||||||||||||||||
|
|
I'm a PostgreSQL DBA, as far as i could understand the difference between outer or not outer joins difference is a topic that has considerable discussion all around the internet. Until today i never saw a difference between those two so i went further and i try to find the difference between those. In the end i read the whole documentation about it and i found the answer for this, So if you look on documentation(at lest PostgreSQL) you can find this phrase: "The words INNER and OUTER are optional in all forms. INNER is the default; LEFT, RIGHT, and FULL imply an outer join." (http://www.postgresql.org/docs/8.4/static/queries-table-expressions.html) In another words, Left Join and Left Outer Join ARE THE SAME Right Join and Right Outer Join ARE THE SAME I hope it can be a contribute for those who are still trying to find the answer. |
|||
|
|
|
I find it easier to think of Joins in the following order:
Until I figured out this (relatively) simple model, JOINS were always a bit more of a black art. Now they make perfect sense. Hope this helps more than it confuses. |
|||
|
|
|
Syntactic sugar, makes it more obvious to the casual reader that the join isn't an inner one. |
|||||||
|
|
There are mainly three types of JOIN
|
||||
|
|
