You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***Note:*** Whenever problem asks for max/min, go with sorting (or) `max()/min()` functions. Whenever problem statement has "each" keyword then group by can be used
254
+
**Note:** Whenever problem asks for max/min, go with sorting (or) `max()/min()` functions. Whenever problem statement has "each" keyword then group by can be used.
255
255
256
256
4.`power()` function to square the numbers and sqrt() to square root
@@ -373,3 +377,41 @@ Note: "query execution order" is called logical query processing, as opposed to
373
377
Do not mistake logical query execution for physical query execution, they are two different things.
374
378
375
379
The easiest way to find what is executed first, just look at the **execution plan** - in Microsoft SQL Server you even have the option of looking at the data transfer between operators live.
0 commit comments