We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cb337c commit 6737162Copy full SHA for 6737162
1 file changed
docs/t-sql/queries/select-group-by-transact-sql.md
@@ -79,16 +79,26 @@ GROUP BY
79
```
80
81
82
--- Syntax for Azure SQL Data Warehouse and Parallel Data Warehouse
+-- Syntax for Azure SQL Data Warehouse
83
84
GROUP BY {
85
column-name [ WITH (DISTRIBUTED_AGG) ]
86
| column-expression
87
| ROLLUP ( <group_by_expression> [ ,...n ] )
88
} [ ,...n ]
89
90
+```
91
+
92
93
+-- Syntax for Parallel Data Warehouse
94
95
+GROUP BY {
96
+ column-name [ WITH (DISTRIBUTED_AGG) ]
97
+ | column-expression
98
+} [ ,...n ]
99
100
101
102
## Arguments
103
104
### *column-expression*
0 commit comments