Skip to content

Commit 8e1eb51

Browse files
authored
Fix syntax error in window function definition (#10310)
Just missing a space and it looked funny. Tested the query with the space and things still worked.
1 parent 29999de commit 8e1eb51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ WHERE SalesOrderID IN (43659, 43664)
327327
AND ProductID LIKE '71%'
328328
WINDOW win1 AS (win3),
329329
win2 AS (ORDER BY SalesOrderID, ProductID),
330-
win3 AS (win2PARTITION BY SalesOrderID);
330+
win3 AS (win2 PARTITION BY SalesOrderID);
331331
```
332332

333333
The following query is the equivalent of the previous query without using the `WINDOW` clause.

0 commit comments

Comments
 (0)