mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
12 lines
397 B
SQL
12 lines
397 B
SQL
DROP TABLE IF EXISTS test_00209;
|
|
CREATE TABLE test_00209 (x UInt8) ENGINE = Log;
|
|
|
|
INSERT INTO test_00209 SELECT 1 AS x;
|
|
INSERT INTO test_00209 SELECT 1 AS x SETTINGS extremes = 1;
|
|
INSERT INTO test_00209 SELECT 1 AS x GROUP BY 1 WITH TOTALS;
|
|
INSERT INTO test_00209 SELECT 1 AS x GROUP BY 1 WITH TOTALS SETTINGS extremes = 1;
|
|
|
|
SELECT count(), min(x), max(x) FROM test_00209;
|
|
|
|
DROP TABLE test_00209;
|