mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
10 lines
228 B
MySQL
10 lines
228 B
MySQL
|
SET allow_experimental_live_view = 1;
|
||
|
|
||
|
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;
|