mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
103bf9d068
as test database is not selected by default.
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;
|