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