mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
15 lines
230 B
SQL
15 lines
230 B
SQL
USE test;
|
|
|
|
DROP TABLE IF EXISTS union;
|
|
|
|
create view union as select 1 as test union all select 2;
|
|
|
|
SELECT * FROM union ORDER BY test;
|
|
|
|
DETACH TABLE union;
|
|
ATTACH TABLE union;
|
|
|
|
SELECT * FROM union ORDER BY test;
|
|
|
|
DROP TABLE union;
|