mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 22:12:21 +00:00
5 lines
130 B
SQL
5 lines
130 B
SQL
SELECT
|
|
JSONExtract('{"a":1, "b":"test"}', 'Tuple(a UInt8, b String)') AS x,
|
|
x.a
|
|
SETTINGS allow_experimental_analyzer = 1;
|