Skip to content

Commit a87adef

Browse files
authored
Merge pull request #7599 from donhuvy/patch-1
Fix Content select-over-clause-transact-sql , Not AdventureWorks, sho…
2 parents e679f56 + 5871e7c commit a87adef

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
@@ -620,7 +620,7 @@ ORDER BY SalesOrderNumber,ProductKey;
620620
The following example shows using the OVER clause with an aggregate function in a calculated value. Notice that the aggregates are calculated by `SalesOrderNumber` and the percentage of the total sales order is calculated for each line of each `SalesOrderNumber`.
621621

622622
```sql
623-
-- Uses AdventureWorks
623+
-- Uses AdventureWorksDW2019
624624

625625
SELECT SalesOrderNumber AS OrderNumber, ProductKey AS Product,
626626
OrderQuantity AS Qty,

0 commit comments

Comments
 (0)