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