mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
6 lines
203 B
MySQL
6 lines
203 B
MySQL
|
drop table if exists test_num;
|
||
|
create table test_enum (c Nullable(Enum16('A' = 1, 'B' = 2))) engine Log;
|
||
|
insert into test_enum values (1), (NULL);
|
||
|
select * from test_enum;
|
||
|
drop table if exists test_num;
|