mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
7 lines
297 B
SQL
7 lines
297 B
SQL
DROP TABLE IF EXISTS t;
|
|
CREATE TABLE t (x UInt8, PROJECTION p (SELECT x GROUP BY x)) ENGINE = MergeTree ORDER BY ();
|
|
INSERT INTO t VALUES (0);
|
|
SET group_by_overflow_mode = 'any', max_rows_to_group_by = 1000, totals_mode = 'after_having_auto';
|
|
SELECT x FROM t GROUP BY x WITH TOTALS;
|
|
DROP TABLE t;
|