mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 19:32:07 +00:00
4 lines
207 B
MySQL
4 lines
207 B
MySQL
|
select * from format(JSONEachRow, '{"x" : 123}\n{"x" : "str"}');
|
||
|
select * from format(JSONEachRow, '{"x" : [123, "str"]}');
|
||
|
select * from format(JSONEachRow, '{"x" : [123, "456"]}\n{"x" : ["str", "rts"]}');
|