mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
8 lines
254 B
SQL
8 lines
254 B
SQL
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;
|