Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/t-sql/queries/select-window-transact-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ WHERE SalesOrderID IN (43659, 43664)
AND ProductID LIKE '71%'
WINDOW win1 AS (win3),
win2 AS (ORDER BY SalesOrderID, ProductID),
win3 AS (win2PARTITION BY SalesOrderID);
win3 AS (win2 PARTITION BY SalesOrderID);
```

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