mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
30 lines
632 B
SQL
30 lines
632 B
SQL
DROP TABLE IF EXISTS Test_00584;
|
|
|
|
CREATE TABLE Test_00584 (
|
|
createdDate Date,
|
|
str String,
|
|
key Enum8('A' = 0, 'B' = 1, 'ALL' = 2),
|
|
a Int64
|
|
)
|
|
ENGINE = MergeTree(createdDate, str, 8192);
|
|
|
|
INSERT INTO Test_00584 VALUES ('2000-01-01', 'hello', 'A', 123);
|
|
|
|
SET max_threads = 1;
|
|
|
|
CREATE VIEW TestView AS
|
|
SELECT str, key, sumIf(a, 0) AS sum
|
|
FROM Test_00584
|
|
GROUP BY str, key
|
|
|
|
UNION ALL
|
|
|
|
SELECT str AS str, CAST('ALL' AS Enum8('A' = 0, 'B' = 1, 'ALL' = 2)) AS key, sumIf(a, 0) AS sum
|
|
FROM Test_00584
|
|
GROUP BY str;
|
|
|
|
SELECT * FROM TestView ORDER BY key;
|
|
|
|
DROP TABLE TestView;
|
|
DROP TABLE Test_00584;
|