mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
15 lines
481 B
SQL
15 lines
481 B
SQL
DROP TABLE IF EXISTS test02416;
|
|
|
|
CREATE TABLE test02416(a UInt64, b UInt64) ENGINE=MergeTree() ORDER BY (a, b);
|
|
|
|
INSERT INTO test02416 SELECT number % 2 as a, number as b FROM numbers(10);
|
|
|
|
-- { echoOn }
|
|
SELECT count() AS amount, a, b, GROUPING(a, b) FROM test02416 GROUP BY GROUPING SETS ((a, b), (a), ()) ORDER BY (amount, a, b);
|
|
|
|
SELECT count() AS amount, a, b, GROUPING(a, b) FROM test02416 GROUP BY ROLLUP(a, b) ORDER BY (amount, a, b);
|
|
|
|
-- { echoOff }
|
|
DROP TABLE test02416;
|
|
|