mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
8 lines
255 B
MySQL
8 lines
255 B
MySQL
|
DROP TABLE IF EXISTS test.reserved_word_table;
|
||
|
CREATE TABLE test.reserved_word_table (`index` UInt8) ENGINE = MergeTree ORDER BY `index`;
|
||
|
|
||
|
DETACH TABLE test.reserved_word_table;
|
||
|
ATTACH TABLE test.reserved_word_table;
|
||
|
|
||
|
DROP TABLE test.reserved_word_table;
|