vote up 1 vote down star
1

Which one is faster?

SELECT FROM A INNER JOIN B ON A.ID = B.ID

...or:

SELECT FROM A , B WHERE A.ID = B.ID
flag
3  
I don't know. Why don't you try running them both and see? – Imagist Oct 8 at 8:15
Why would you even consider using syntax that is 17 years out of date (the second version)? It is a bad practice to use the second syntax. It is more likely to return incorrect results though accidental cross joins, it is harder to maintain and it is harder to read. – HLGEM Oct 8 at 14:54
They're equivalent. The first is using ANSI JOIN syntax; the other is non-ANSI join syntax. – OMG Ponies Oct 8 at 17:27

7 Answers

vote up 2 vote down

actually to be specific, neither of them are faster. They will not run at all.

You need to at least specify a column or constant or even * in the SELECT clause.

link|flag
vote up 6 vote down

Measure, don't guess.

Some DBMS' will run explicit joins faster than implicit ones but it depends entirely upon the DBMS itself (the one I use is smart enough to do both at full speed).

There's a reason why we have DBAs. They're meant to monitor and tune the performance of the database based on reality, not some (mis-)conception as to how things might perform.

That's because the performance changes based on the data in the tables.

So, you should not be worrying about how fast those two queries perform, until there's a performance problem. Use your best guess (with indexes and such) but keep an eye on what the actual performance is, in production, and adjust for that.

See also here.

link|flag
vote up 2 vote down

Check the execution plan for both queries, draw your conclusions from that.

link|flag
vote up 5 vote down

They are equivalent, neither should be faster than the other. The best way to know is to use EXPLAIN.

link|flag
I'd not call them "equivalent", because a where-clause join is not exactly the same as the join condition, especially for outer joins. – Lucero Oct 8 at 8:16
4  
But this is an inner join. – Lukáš Lalinský Oct 8 at 8:17
Yes, I know. Still, people tend to use the syntax they're used to for both inner and outer joins, so I thought that I'd mention it. Also, depending on the RDBMS used and how smart the optimizer is, the results (performance-wise) may differ if you have additional restrictions on the data to be joints (like, B.X=1). If you do this in the ON of the JOIN, it will clearly state that only those rows are to be used for joining, while the other way around it may also join first and then remove the non-matching rows. – Lucero Oct 8 at 8:24
2  
I completely agree with that, but the two queries as they are written in the question are equivalent (both inner joins without any additional conditions). I wouldn't suggest to use the table1, table2 syntax either. – Lukáš Lalinský Oct 8 at 8:26
I concur with Lukáš, they are just the same. Use JOIN, it prevents accidental cartesian product on tables you are querying. And if you really want cartesian product on your table use tableA CROSS JOIN tableB, it makes the intent more obvious. Use JOIN to reflect the fact that you are relating tables to each other, don't use comma+WHERE combo for that. Use WHERE exclusively for filtering – Michael Buen Oct 8 at 8:43
show 1 more comment
vote up 17 vote down

I don't think one is faster than the other, but one is BETTER to use than the other:

SELECT (fields)
FROM A
INNER JOIN B ON A.ID = B.ID

is definitely the preferred way of expressing this (and conforms to the ANSI SQL standard for join syntax). It's clearer, it's more obvious to the observer what exactly is happening here.

Always use this syntax over the other - it's just easier and clearer!

PS: SQL Guru Aaron Bertrand seems to agree :-) Bad habits to kick: using old-style JOINs

link|flag
2  
always use this syntax and never answer the question asked ;-) Takes some effort not to downvote ;-) – hacker Oct 8 at 8:15
1  
I said that I don't think there's any difference in performance - first sentence! – marc_s Oct 8 at 8:16
1  
+1 because this is much clearer and also makes sure that join conditions and where clauses do not get confused. Also, the join order can be controlled in a more explicit way. – Lucero Oct 8 at 8:19
Mark, wish I could downvote my own comment for inability to read ;-) – hacker Oct 8 at 8:24
1  
Dean J also the old style syntax is much more prone to errors in complex queries where you can accidentally get a cross join. Further, the right and left join old style syntax (= or =) does not work correctly in SQl server and should never be used. – HLGEM Oct 8 at 14:51
show 3 more comments
vote up 0 vote down

Aren't they both equally fast? Because they basically translate to the same thing....

If you want to know for sure you could probably set up a simple test case and execute it.

link|flag
vote up 4 vote down

Measure the time needed for the execution. It depends a lot from too many parameters to be answered without any doubt.

link|flag

Your Answer

Get an OpenID
or

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