Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to best organize the Inner Joins in (select) statement

Tags:

sql

let's say i have three tables, each one relates to another,

when i need to get a column from each table, does it make difference how to organize the (inner joins)??

Select table1.column1,table2.column2,table3.column2
From table1 
Inner Join table2 on ..... etc
Inner Join table3 on .....

in another words, can i put (table2) after (From )??

Select table1.column1,table2.column2,table3.column2
From table2
Inner Join table1 on ..... etc
Inner Join table3 on .....
like image 568
Nour Avatar asked Oct 10 '10 09:10

Nour


2 Answers

For most queries, order does not matter.

  • An INNER JOIN is both associative and commutative so table order does not matter
  • SQL is declarative. That is, how you define the query is not how the optimiser works it out. It does not do it line by line as you wrote it.

That said...

  • OUTER JOINs are neither associative nor commutative
  • For complex queries, the optimiser will "best guess" rather than go through all possibilities which "costs" too much. Table order may matter here
like image 190
gbn Avatar answered Sep 24 '22 15:09

gbn


The inner join operation has left to right associativity. It doesn't matter much in which order you write the tables, as long as you don't refer to any tables in the ON condition before they have been joined.

When the statement is executed the database engine will determine the best order to execute the join and this may be different from the order they appear in the SQL query.

like image 43
Mark Byers Avatar answered Sep 24 '22 15:09

Mark Byers