Skip to content

Commit f4b81a3

Browse files
committed
Fix links
1 parent ed059c0 commit f4b81a3

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
@@ -41,7 +41,7 @@ Named window definition in the WINDOW clause determines the partitioning and ord
4141
>ALTER DATABASE DatabaseName SET COMPATIBILITY_LEVEL = 160
4242
>```
4343
44-
[Transact-SQL Syntax Conventions](https://docs.microsoft.com/en-us/sql/t-sql/language-elements/transact-sql-syntax-conventions-transact-sql)
44+
[Transact-SQL Syntax Conventions (Transact-SQL)](../language-elements/transact-sql-syntax-conventions-transact-sql.md)
4545
4646
## Syntax
4747
@@ -79,13 +79,13 @@ Is the name of the window being referenced by the current window. The referenced
7979

8080
The other arguments are:
8181

82-
- [PARTITION BY](https://docs.microsoft.com/en-us/sql/t-sql/queries/select-over-clause-transact-sql?view=sql-server-ver15#partition-by) that divides the query result set into partitions.
82+
- [PARTITION BY](select-over-clause-transact-sql.md#partition-by) that divides the query result set into partitions.
8383

84-
- [ORDER BY](https://docs.microsoft.com/en-us/sql/t-sql/queries/select-over-clause-transact-sql?view=sql-server-ver15#order-by) that defines the logical order of the rows within each partition of the result set.
84+
- [ORDER BY](select-over-clause-transact-sql.md#order-by) that defines the logical order of the rows within each partition of the result set.
8585

86-
- [ROWS/RANGE](https://docs.microsoft.com/en-us/sql/t-sql/queries/select-over-clause-transact-sql?view=sql-server-ver15#rows-or-range) that limits the rows within the partition by specifying start and end points within the partition.
86+
- [ROWS/RANGE](select-over-clause-transact-sql.md#rows-or-range) that limits the rows within the partition by specifying start and end points within the partition.
8787

88-
For more specific details about the arguments, see the [OVER Clause](https://docs.microsoft.com/en-us/sql/t-sql/queries/select-over-clause-transact-sql)
88+
For more specific details about the arguments, see the [OVER Clause](select-over-clause-transact-sql.md)
8989

9090

9191
## General remarks
@@ -104,7 +104,7 @@ The restrictions for usage of window specifications in the OVER clause with the
104104

105105
## Examples
106106

107-
### Us3 the window defined in WINDOW clause
107+
### Use the window defined in WINDOW clause
108108

109109
The following example query shows uses a named window in the OVER clause.
110110

@@ -340,4 +340,4 @@ Here is the result set.
340340
- [Analytic functions (Transact-SQL)](../functions/analytic-functions-transact-sql.md)
341341
- [SELECT - OVER Clause (Transact-SQL)](select-over-clause-transact-sql.md)
342342
- [SELECT (Transact-SQL)](~/t-sql/queries/select-transact-sql.md)
343-
- [SELECT Clause (Transact-SQL)](~/t-sql/queries/select-clause-transact-sql.md)
343+
- [SELECT Clause (Transact-SQL)](~/t-sql/queries/select-clause-transact-sql.md)

0 commit comments

Comments
 (0)