Does the sequence in which we use join in a query effects its execution time ?
|
feedback
|
|
Yes it does. Its effect can be seen in the query execution plan. Refer this and this. Another link is here | |||||
feedback
|
|
No, it does not.
These queries:
and
will produce identical plans with the However, you should use this hint only when you absolutely sure you know what you are doing. | |||||
feedback
|
|
The optimizer will usually compare all join orders and try to select the optimal order regardless of the order you wrote the query however in some complicated queries there are simply too many options to consider, note that the number of possible join orders increases to the factorial of the number of tables joined. In this case the optimizer will not consider all options but will definitely consider the order you wrote the joins in the query and therefor may effect execution plan and execution time. | |||
|
feedback
|
|
For outer joins, the order of tables changes the meaning of your query and is very likely to change the execution plan. | |||
|
feedback
|