mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
4 lines
199 B
MySQL
4 lines
199 B
MySQL
|
DROP TABLE IF EXISTS users_02534;
|
||
|
CREATE TABLE users_02534 (id Int16, name String, INDEX bf_idx(name) TYPE minmax) ENGINE=MergeTree ORDER BY id;
|
||
|
SHOW CREATE TABLE users_02534;
|
||
|
DROP TABLE users_02534;
|