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