mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
15 lines
437 B
MySQL
15 lines
437 B
MySQL
|
SET max_rows_to_group_by = 100000;
|
||
|
SET group_by_overflow_mode = 'any';
|
||
|
|
||
|
SET totals_mode = 'after_having_auto';
|
||
|
SELECT dummy, count() GROUP BY dummy WITH TOTALS;
|
||
|
|
||
|
SET totals_mode = 'after_having_inclusive';
|
||
|
SELECT dummy, count() GROUP BY dummy WITH TOTALS;
|
||
|
|
||
|
SET totals_mode = 'after_having_exclusive';
|
||
|
SELECT dummy, count() GROUP BY dummy WITH TOTALS;
|
||
|
|
||
|
SET totals_mode = 'before_having';
|
||
|
SELECT dummy, count() GROUP BY dummy WITH TOTALS;
|