Saturday, August 17, 2013

Logical Query execution in SQL Server

The logical execution of a query in SQL server by Query processor is in the order of below clauses ,


  1. FROM Clause
  2. WHERE Clause
  3. GROUP BY Clause
  4. HAVING Clause
  5. SELECT Clause
  6. ORDER BY Clause
  7. TOP Clause

No comments: