mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
8 lines
254 B
MySQL
8 lines
254 B
MySQL
|
DROP TABLE IF EXISTS test.merge_tree;
|
||
|
CREATE TABLE test.merge_tree (x UInt64, date Date) ENGINE = MergeTree(date, x, 1);
|
||
|
|
||
|
INSERT INTO test.merge_tree VALUES (1, '2000-01-01');
|
||
|
SELECT x AS y, y FROM test.merge_tree;
|
||
|
|
||
|
DROP TABLE IF EXISTS test.merge_tree;
|