We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08e800f commit c357874Copy full SHA for c357874
source/reference/operator/aggregation/group.txt
@@ -334,7 +334,8 @@ This aggregation operation is equivalent to the following SQL statement:
334
Avg(quantity) AS averageQuantity,
335
Count(*) AS Count
336
FROM sales
337
- GROUP BY Date(date)
+ WHERE date >= '01/01/2014' AND date < '01/01/2015'
338
+ GROUP BY date
339
ORDER BY totalSaleAmount DESC
340
341
.. seealso::
0 commit comments