mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
37 lines
657 B
SQL
37 lines
657 B
SQL
DROP TABLE IF EXISTS testView;
|
|
DROP TABLE IF EXISTS testTable;
|
|
|
|
CREATE TABLE IF NOT EXISTS testTable (
|
|
A LowCardinality(String), -- like voter
|
|
B Int64
|
|
) ENGINE MergeTree()
|
|
ORDER BY (A);
|
|
|
|
INSERT INTO testTable VALUES ('A', 1),('B',2),('C',3)
|
|
|
|
CREATE VIEW testView AS
|
|
SELECT
|
|
A as ALow, -- like account
|
|
B
|
|
FROM
|
|
testTable;
|
|
|
|
SELECT CAST(ALow, 'String') AS AStr
|
|
FROM testView
|
|
GROUP BY AStr;
|
|
|
|
DROP TABLE testTable;
|
|
|
|
CREATE TABLE IF NOT EXISTS testTable (
|
|
A String, -- like voter
|
|
B Int64
|
|
) ENGINE MergeTree()
|
|
ORDER BY (A);
|
|
|
|
SELECT CAST(ALow, 'String') AS AStr
|
|
FROM testView
|
|
GROUP BY AStr;
|
|
|
|
DROP TABLE IF EXISTS testView;
|
|
DROP TABLE IF EXISTS testTable;
|