mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
6 lines
215 B
MySQL
6 lines
215 B
MySQL
|
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;
|