mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
4 lines
130 B
MySQL
4 lines
130 B
MySQL
|
DROP TABLE IF EXISTS test;
|
||
|
CREATE TABLE test(test String DEFAULT 'test', test_tmp Int DEFAULT 1)ENGINE = Memory;
|
||
|
DROP TABLE test;
|