Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between left join and left outer join?

share|improve this question

7 Answers

up vote 233 down vote accepted

As per the documentation: FROM (Transact-SQL):

<join_type> ::= 
    [ { INNER | { { LEFT | RIGHT | FULL } [ OUTER ] } } [ <join_hint> ] ]
    JOIN

The keyword OUTER is marked as optional (enclosed in square brackets), and what this means in this case is that whether you specify it or not makes no difference. Note that while the other elements of the join clause is also marked as optional, leaving them out will of course make a difference.

For instance, the entire type-part of the JOIN clause is optional, in which case the default is INNER if you just specify JOIN. In other words, this is legal:

SELECT *
FROM A JOIN B ON A.X = B.Y

Here's a list of equivalent syntaxes:

A LEFT JOIN B            A LEFT OUTER JOIN B
A RIGHT JOIN B           A RIGHT OUTER JOIN B
A FULL JOIN B            A FULL OUTER JOIN B
A INNER JOIN B           A JOIN B

Also take a look at the answer I left on this other SO question: SQL left join vs multiple tables on FROM line?.

share|improve this answer
13  
Absolutely correct. OUTER is allowed for ANSI-92 compatibility. – Sean Reilly Jan 2 '09 at 21:34
8  
While the conclusion is true, the evidence is not. Showing that OUTER is optional in the syntax doesn't mean that it is equivalent if it is used or not. There are lots of syntactic elements that optional but make a semantic difference. For example, the [ <join_hint> ] clause is option, but means something different if it is present or not. – heneryville Dec 22 '11 at 21:06
Ok, I'll agree with that, I'll edit the answer to reflect this. – Lasse V. Karlsen Dec 23 '11 at 7:59
1  
thank you very much for this elucidation – Артём Царионов May 25 '12 at 16:41
1  
@LasseV.Karlsen I just meant that the left side has the concise form and the right side has the expanded form. I thought it would make it coherent if you followed the same for JOINs as well. – nawfal May 2 at 7:40
show 6 more comments

To answer your question there is no difference between LEFT JOIN and LEFT OUTER JOIN, they are exactly same that said...

At the top level there are mainly 3 types of joins:

  1. INNER
  2. OUTER
  3. CROSS

  1. INNER JOIN - fetches data if present in both the tables.

  2. OUTER JOIN are of 3 types:

    1. LEFT OUTER JOIN - fetches data if present in the left table.
    2. RIGHT OUTER JOIN - fetches data if present in the right table.
    3. FULL OUTER JOIN - fetches data if present in either of the two tables.
  1. CROSS JOIN, as the name suggests, does [n X m] that joins everything to everything.
    Similar to scenario where we simply lists the tables for joining (in the FROM clause of the SELECT statement), using commas to separate them.

Points to be noted:

  • If you just mention JOIN then by default it is a INNER JOIN.
  • An OUTER join has to be LEFT | RIGHT | FULL you can not simply say OUTER JOIN.
  • You can drop OUTER keyword and just say LEFT JOIN or RIGHT JOIN or FULL JOIN.

For those who want to visualise these in a better way, please go to this link: A Visual Explanation of SQL Joins

share|improve this answer
4  
hi, This is the best answer i saw on stack overflow up-til now +1 :) – Bravo Dec 15 '11 at 9:36
+1 Thanks a lot. – One-One Apr 7 '12 at 5:45
1  
+1 best answer on this question :) – Eng.Fouad Jun 11 '12 at 17:28
1  
For completeness you might want to add FULL JOIN – EBarr Oct 18 '12 at 14:47
1  
Very good answer. It will be clearer if you say "LEFT OUTER JOIN - fetches all data from the left table with matching data from right, if preset." for 2.1 (and similar change for 2.2) – ssh Dec 27 '12 at 19:27
show 3 more comments

Nothing. They are equivalent.

share|improve this answer
4  
@Peter: No, you're wrong. There's no such thing as a left inner join. The "OUTER" keyword is optional, but LEFT [OUTER] JOIN is always an outer join. – Bill Karwin Jan 2 '09 at 8:39
5  
There is no such thing as a LEFT INNER JOIN in sql server – Mitch Wheat Jan 2 '09 at 8:40
1  
This is the case in Microsoft SQL Server, and any other SQL-compliant RDBMS. – Bill Karwin Jan 2 '09 at 8:41
2  
apologies - you are quite correct - I've removed my downvote and answer there is no such thing as a left inner join - I'd have realised that if I'd thought about it a bit more - PS. it's early morning here and that's my excuse – pro Jan 2 '09 at 8:46
4  
I like simple answers. – disc0dancer Aug 6 '09 at 21:27
show 5 more comments

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.

share|improve this answer

I find it easier to think of Joins in the following order:

  • CROSS JOIN - a Cartesian product of both tables. ALL joins begin here
  • INNER JOIN - a CROSS JOIN with a filter added.
  • OUTER JOIN - an INNER JOIN with missing elements (from either LEFT or RIGHT table) added afterward.

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.

share|improve this answer

Syntactic sugar, makes it more obvious to the casual reader that the join isn't an inner one.

share|improve this answer
So... what's a FULL OUTER JOIN then? – David B Jan 2 '09 at 20:29
2  
tableA FULL OUTER JOIN tableB will give you three types of records: all records in tableA with no matching record in tableB, all records in tableB with no matching record in tableA, and all records in tableA with a matching record in tableB. – Dave DuPlantis Oct 5 '09 at 18:16

There are mainly three types of JOIN

  1. Inner: fetches data, that are present in both tables
    • Only JOIN means INNER JOIN
  2. Outer: are of three types

    • LEFT OUTER - - fetches data present only in left table & matching condition
    • RIGHT OUTER - - fetches data present only in right table & matching condition
    • FULL OUTER - - fetches data present any or both table
    • (LEFT or RIGHT or FULL) OUTER JOIN can be written w/o writing "OUTER"
  3. Cross Join: joins everything to everything

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.