mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
7 lines
295 B
SQL
7 lines
295 B
SQL
DROP TABLE IF EXISTS json;
|
|
CREATE TABLE json (x UInt8, title String) ENGINE = Memory;
|
|
INSERT INTO json FORMAT JSONEachRow {"x": true, "title": "true"}, {"x": false, "title": "false"}, {"x": 0, "title": "0"}, {"x": 1, "title": "1"};
|
|
|
|
SELECT * FROM json ORDER BY title;
|
|
DROP TABLE IF EXISTS json;
|