Skip to content

Commit d98a502

Browse files
committed
Update per PM feedback
1 parent 5b5c187 commit d98a502

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

docs/t-sql/queries/select-window-transact-sql.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ ORDER BY PostalCode;
128128
GO
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
134134
USE 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
174174
ALTER DATABASE AdventureWorks2012 SET Compatibility_level = 160;
@@ -189,7 +189,7 @@ WINDOW win AS (PARTITION BY SalesOrderID);
189189
GO
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
195195
USE 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
238238
ALTER DATABASE AdventureWorks2012 SET Compatibility_level = 160;
@@ -253,7 +253,7 @@ WINDOW win AS (ORDER BY SalesOrderID, ProductID);
253253
GO
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
259259
USE 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
290290
ALTER DATABASE AdventureWorks2012 SET Compatibility_level = 160;
@@ -306,7 +306,7 @@ WINDOW win1 AS (win3),
306306
GO
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
312312
USE AdventureWorks2012;

0 commit comments

Comments
 (0)