ChatGPT解决这个技术问题 Extra ChatGPT

Difference between JOIN and INNER JOIN

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?

per the ANSI SQL 92 specification, they are identical: "3) If a is specified and a is not specified, then INNER is implicit."

S
Sled

They are functionally equivalent, but INNER JOIN can be a bit clearer to read, especially if the query has other join types (i.e. LEFT or RIGHT or CROSS) included in it.


Is this true for all data bases (e.g. SQL, postgres?) Does anyone know a link to the documentation explaining this?
@Ivanzinho: Keyboard strokes are not the measure of query or program complexity. Real life complexity comes from maintainability, where readability plays a major role. The fact that when it says INNER JOIN, you can be sure of what it does and that it's supposed to be just that, whereas a plain JOIN will leave you, or someone else, wondering what the standard said about the implementation and was the INNER/OUTER/LEFT left out by accident or by purpose.
Thanks @Indian for your links. The key holds in page 181 of the first one, when describing the generative grammar of page 180: "If a is specified and a is not specified, then INNER is implicit."
Q
Quassnoi

No, there is no difference, pure syntactic sugar.


I wouldn't call this syntactic sugar. "Default" join type, "shorthand," or "alias," maybe.
In computer science, syntactic sugar is syntax within a programming language that is designed to make things easier to read or to express. I believe ability to omit INNER falls under this definition.
If you apply the definition very literally, yes, but I've always seen it reserved for more interesting types of syntax, not just alternative names for things.
@Quassnoi the mere fact that this question is asked, shows the absense of INNER does not make the query easier to read. For all I know, JOIN could well mean LEFT JOIN if it wasn't cleared up by the answers here.
@Quassnoi Your comment's quoted introductory wiki statement is true of syntactic sugar, but it's inadequate as a definition. Syntactic sugaring is about simpler syntax for special cases of complex syntax. It is more appropriate to say that INNER is a "noise word".
C
Community

INNER JOIN = JOIN

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.

OR

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)


P
Peter Mortensen

Does it differ between different SQL implementations?

Yes, Microsoft Access doesn't allow just join. It requires inner join.


P
Peter Mortensen

Similarly with OUTER JOINs, the word "OUTER" is optional. It's 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

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!
@Jonathan.There is no concept of direction on an inner join. Outer joins can produce unmatched results sets and those can vary based on direction. Inner require matching so the direction does not matter.
M
Martin Smith

As the other answers already state there is no difference in your example.

The relevant bit of grammar is documented here

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

Showing that all are optional. The page further clarifies that

INNER Specifies all matching pairs of rows are returned. Discards unmatched rows from both tables. When no join type is specified, this is the default.

The grammar does also indicate that there is one time where the INNER is required though. When specifying a join hint.

See the example below

CREATE TABLE T1(X INT);
CREATE TABLE T2(Y INT);

SELECT *
FROM   T1
       LOOP JOIN T2
         ON X = Y;

SELECT *
FROM   T1
       INNER LOOP JOIN T2
         ON X = Y;

https://i.stack.imgur.com/J4DX4.png