mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 06:32:08 +00:00
13 lines
667 B
SQL
13 lines
667 B
SQL
select os_name, count() from (SELECT CAST('iphone' AS Enum8('iphone' = 1, 'android' = 2)) AS os_name) group by os_name WITH TOTALS;
|
|
select toNullable(os_name) AS os_name, count() from (SELECT CAST('iphone' AS Enum8('iphone' = 1, 'android' = 2)) AS os_name) group by os_name WITH TOTALS;
|
|
|
|
DROP TABLE IF EXISTS auto_assgin_enum;
|
|
DROP TABLE IF EXISTS auto_assgin_enum1;
|
|
|
|
CREATE TABLE auto_assgin_enum (x enum('a', 'b')) ENGINE=MergeTree() order by x;
|
|
CREATE TABLE auto_assgin_enum1 (x enum('a' = 1, 'b')) ENGINE=MergeTree() order by x; -- { serverError 223 }
|
|
INSERT INTO auto_assgin_enum VALUES('a'), ('b');
|
|
select * from auto_assgin_enum;
|
|
|
|
DROP TABLE auto_assgin_enum;
|