mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5 lines
152 B
SQL
5 lines
152 B
SQL
DROP TABLE IF EXISTS mt;
|
|
CREATE TABLE mt (d Date, x UInt8) ENGINE = MergeTree(d, x, 8192);
|
|
INSERT INTO mt VALUES (52392, 1), (62677, 2);
|
|
DROP TABLE mt;
|