mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
5 lines
152 B
MySQL
5 lines
152 B
MySQL
|
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;
|