Home Forums SQL Server 2012 SQL Server 2012 - T-SQL SQL Server Query Execution - Where Filteration Order - Performance Impact. RE: SQL Server Query Execution - Where Filteration Order - Performance Impact.

  • GilaMonster (7/28/2015)


    Not really surprising. IN is usually a tad faster than a join (a very, very small amount). Changing the IN to a join may have also changed the logic of the query, resulted in more rows, etc, etc.

    Gila, Thank you for your valuable feedback; as always. 🙂