mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
8 lines
189 B
SQL
8 lines
189 B
SQL
DROP TABLE IF EXISTS test.mt;
|
|
|
|
CREATE TABLE test.mt (a Int32) Engine=MergeTree order by tuple();
|
|
CREATE LIVE VIEW test.lv AS SELECT * FROM test.mt;
|
|
|
|
DROP TABLE test.lv;
|
|
DROP TABLE test.mt;
|