开发者

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

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 .....


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


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜