@@ -128,7 +128,7 @@ ORDER BY PostalCode;
128128GO
129129```
130130
131- The following query is the equivalent of the above query without using WINDOW clause.
131+ The following query is the equivalent of the above query without using the WINDOW clause.
132132
133133``` sql
134134USE AdventureWorks2012;
@@ -168,7 +168,7 @@ Here is the result set.
168168
169169### Simple example reuses windows in OVER clause
170170
171- The following example shows defining a window specification and using it multiple times in OVER clause.
171+ The following example shows defining a window specification and using it multiple times in an OVER clause.
172172
173173``` sql
174174ALTER DATABASE AdventureWorks2012 SET Compatibility_level = 160 ;
@@ -189,7 +189,7 @@ WINDOW win AS (PARTITION BY SalesOrderID);
189189GO
190190```
191191
192- The following query is the equivalent of the above query without using WINDOW clause.
192+ The following query is the equivalent of the above query without using the WINDOW clause.
193193
194194``` sql
195195USE AdventureWorks2012;
@@ -232,7 +232,7 @@ Here is the result set.
232232
233233### Defining common specification in WINDOW clause
234234
235- This example shows defining a common specification in a window and using it to define additional specifications in OVER clause.
235+ This example shows defining a common specification in a window and using it to define additional specifications in the OVER clause.
236236
237237``` sql
238238ALTER DATABASE AdventureWorks2012 SET Compatibility_level = 160 ;
@@ -253,7 +253,7 @@ WINDOW win AS (ORDER BY SalesOrderID, ProductID);
253253GO
254254```
255255
256- The following query is the equivalent of the above query without using WINDOW clause.
256+ The following query is the equivalent of the above query without using the WINDOW clause.
257257
258258``` sql
259259USE AdventureWorks2012;
@@ -284,7 +284,7 @@ Here is the result set.
284284
285285### Forward and backward window references
286286
287- This example shows using named windows as forward and backward references when defining a new window in WINDOW clause.
287+ This example shows using named windows as forward and backward references when defining a new window in the WINDOW clause.
288288
289289``` sql
290290ALTER DATABASE AdventureWorks2012 SET Compatibility_level = 160 ;
@@ -306,7 +306,7 @@ WINDOW win1 AS (win3),
306306GO
307307```
308308
309- The following query is the equivalent of the above query without using WINDOW clause.
309+ The following query is the equivalent of the above query without using the WINDOW clause.
310310
311311``` sql
312312USE AdventureWorks2012;
0 commit comments