From 7625f4522f5ea259ae76bcb46a31bdea203a3e15 Mon Sep 17 00:00:00 2001 From: Ben Miller Date: Mon, 6 Apr 2026 21:05:31 -0500 Subject: [PATCH] Fix syntax error in window function definition Just missing a space and it looked funny. Tested the query with the space and things still worked. --- docs/t-sql/queries/select-window-transact-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/t-sql/queries/select-window-transact-sql.md b/docs/t-sql/queries/select-window-transact-sql.md index e47003cc701..c2c2f124c53 100644 --- a/docs/t-sql/queries/select-window-transact-sql.md +++ b/docs/t-sql/queries/select-window-transact-sql.md @@ -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.