Skip to content

Commit 9606e8d

Browse files
authored
Correcting language tags for code blocks
sqlsyntax -> syntaxsql
1 parent 756d6c3 commit 9606e8d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/t-sql/queries/select-over-clause-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ from sys.objects
130130
### PARTITION BY
131131
Divides the query result set into partitions. The window function is applied to each partition separately and computation restarts for each partition.
132132

133-
```sqlsyntax
133+
```syntaxsql
134134
PARTITION BY *value_expression*
135135
```
136136

@@ -162,7 +162,7 @@ from sys.objects
162162

163163
### ORDER BY
164164

165-
```sqlsyntax
165+
```syntaxsql
166166
ORDER BY *order_by_expression* [COLLATE *collation_name*] [ASC|DESC]
167167
```
168168

@@ -251,7 +251,7 @@ order by object_id asc
251251
#### BETWEEN AND
252252
**Applies to**: [!INCLUDE[ssSQL11](../../includes/sssql11-md.md)] and later.
253253

254-
```sqlsyntax
254+
```syntaxsql
255255
BETWEEN <window frame bound > AND <window frame bound >
256256
```
257257
Used with either ROWS or RANGE to specify the lower (starting) and upper (ending) boundary points of the window. \<window frame bound> defines the boundary starting point and \<window frame bound> defines the boundary end point. The upper bound cannot be smaller than the lower bound.

0 commit comments

Comments
 (0)