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