mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
7 lines
296 B
SQL
7 lines
296 B
SQL
DROP TABLE IF EXISTS test.enum_totals;
|
|
CREATE TABLE test.enum_totals (e Enum8('hello' = 1, 'world' = 2)) ENGINE = Memory;
|
|
INSERT INTO test.enum_totals VALUES ('hello'), ('world'), ('world');
|
|
|
|
SELECT e, count() FROM test.enum_totals GROUP BY e WITH TOTALS ORDER BY e;
|
|
DROP TABLE test.enum_totals;
|