Skip to content

Commit 606c059

Browse files
authored
Merge pull request #6030 from LarnuUK/patch-2
SELECT...OVER - ORDER BY: Typographical Error
2 parents b1cec96 + ffdfe3c commit 606c059

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ ORDER BY *order_by_expression* [COLLATE *collation_name*] [ASC|DESC]
168168

169169
Defines the logical order of the rows within each partition of the result set. That is, it specifies the logical order in which the window function calculation is performed.
170170
- If it is not specified, the default order is `ASC` and window function will use all rows in partition.
171-
- If it is specified, and in ROWS/RANGE is not specified, then default `RANGE UNBOUNDED PRECEDING AND CURRENT ROW` is used as default for window frame by the functions that can accept optional ROWS/RANGE specification (for example `min` or `max`).
171+
- If it is specified, and a ROWS/RANGE is not specified, then default `RANGE UNBOUNDED PRECEDING AND CURRENT ROW` is used as default for window frame by the functions that can accept optional ROWS/RANGE specification (for example `min` or `max`).
172172

173173
```sql
174174
select

0 commit comments

Comments
 (0)