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