mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
8 lines
230 B
SQL
8 lines
230 B
SQL
DROP TABLE IF EXISTS reserved_word_table;
|
|
CREATE TABLE reserved_word_table (`index` UInt8) ENGINE = MergeTree ORDER BY `index`;
|
|
|
|
DETACH TABLE reserved_word_table;
|
|
ATTACH TABLE reserved_word_table;
|
|
|
|
DROP TABLE reserved_word_table;
|