SQL Server Logical Query Processing

Опубликовано: 08 Январь 2025
на канале: Technet consultancy
102
8

SQL Server Logical Query Processing

SQL has both Logical and physical query processing sides. In this video we are going to understand logical order of query. This is part -1 of series.

/*
This is how you write query in SQL

1.SELECT

2.FROM

3.WHERE

4.GROUP BY

5.HAVING

6.ORDER BY

-----------------------------------------------
*/

/*
logical query processing order

1.FROM

2.WHERE

3.GROUP BY

4.HAVING

5.SELECT

6.ORDER BY
*/

#sqlserver #technetconsultancy @query