mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
6 lines
190 B
SQL
6 lines
190 B
SQL
DROP TABLE IF EXISTS nullable;
|
|
CREATE TABLE nullable (id Nullable(UInt32), cat String) ENGINE = Log;
|
|
INSERT INTO nullable (cat) VALUES ('test');
|
|
SELECT * FROM nullable;
|
|
DROP TABLE nullable;
|