• CapnHector (1/28/2013)


    Eugene Elutin (1/28/2013)


    purushottam2 (1/28/2013)


    Yes, Because in one of my query, i am joining with 3 tables. And table 1 have the 1 million record, 2 Lakh and table3 have 10 thousands.

    I am using inner join, so question came on my mind how order of join works. For the above case it is important to know.

    SQL query optimizer should (and most of the times it does) figure out the best sequence by itself.

    Saying that, I used to follow my old custom to drive query from the smallest table/data set...

    I believe the SQL Optimizer can change the join order for queries that use only inner joins. Once you start introducing Outer Joins the order of the joins matters and a different order of Outer Joins could produce a different result set.

    (Now, im currently looking for the source i read this from but having difficulty finding it again. If i find it ill edit this post with a link to the source.)

    The optimizer can construct and use any execution plan that is logically equivalent to the T-SQL query, i.e., it can process joins in any order that yields the required result. The optimizer's entire purpose is to find the most efficient execution plan. It relies on statistics and metadata to make cost-based decisions about how to execute each query, and it almost always does an excellent job. We can get better execution plans by writing queries in a way that allows the optimizer to make full use of the resources available to it, though (read up on SARGable predicates for one example of this).

    Jason Wolfkill