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

Both these joins will give me the same results:

SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK

vs

SELECT * FROM table INNER JOIN otherTable ON table.ID = otherTable.FK

Is there any difference between the statements in performance or otherwise ? Does it differ between different SQL implementations ?

share|improve this question
See this question: <stackoverflow.com/questions/448023?sort=newest>; – Joel Coehoorn Feb 19 '09 at 14:50
As a side note: CROSS JOIN is a good to know join type (it differs from INNER JOIN). – Serge May 14 at 11:57

6 Answers

up vote 145 down vote accepted

They function the same. INNER JOIN can be a bit more clear to read, especially if your query has other join types (e.g. LEFT or RIGHT) included in it.

share|improve this answer

No, there is no difference, pure syntactic sugar.

share|improve this answer
9  
+1 for syntactic sugar – Navid Rahmani Nov 4 '11 at 16:17
2  
+1 for syntactic sugar, from iran – pylover Apr 24 '12 at 9:02
+1 for syntactic sugar – Rinzler Mar 28 at 10:03

Similarly with OUTER JOINs the word "OUTER" is optional, its the LEFT or RIGHT keyword that makes the JOIN an "OUTER" JOIN.

However for some reason I always use "OUTER" as in LEFT OUTER JOIN and never LEFT JOIN, but I never use INNER JOIN but rather I just use "JOIN"

SELECT ColA, ColB, ...
FROM MyTable AS T1
     JOIN MyOtherTable AS T2
         ON T2.ID = T1.ID
     LEFT OUTER JOIN MyOptionalTable AS T3
         ON T3.ID = T1.ID
share|improve this answer
2  
I am the opposite of you: I always say "INNER JOIN" but I never use OUTER; so "LEFT JOIN" and "RIGHT JOIN". Guess I'm just keeping my character counts constant! – Stephen Holt Mar 7 '12 at 10:27

I better liked this explanation (http://dbaspot.com/sqlserver-faq/268080-join-vs-inner-join.html):

INNER JOIN is the default if you don't specify the type when you use the word JOIN.

You can also use LEFT OUTER JOIN or RIGHT OUTER JOIN, in which case the word OUTER is optional, or you can specify CROSS JOIN.

Another one:

For an inner join, the syntax is:

SELECT ...
FROM TableA
[INNER] JOIN TableB

(in other words, the "INNER" keyword is optional - results are the same with or without it)

share|improve this answer

Does it differ between different SQL implementations?

Yes, MS Access doesn't allow just join it requires inner join.

share|improve this answer

In your example, there is no difference.

share|improve this answer
6  
and in which exactly example there will be a difference? – shabunc Dec 2 '11 at 11:14
select * from table, othertable where table.id = othertable.fk – Eppz Jul 18 '12 at 13:41
You are using the old join syntax, which really has nothing to do with what the OP is asking... – deutschZuid Mar 27 at 22:02

protected by driis May 15 '12 at 16:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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