mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5 lines
209 B
SQL
5 lines
209 B
SQL
set output_format_json_array_of_rows = 1;
|
|
select number a, number * 2 b from numbers(3) format JSONEachRow;
|
|
select * from numbers(1) format JSONEachRow;
|
|
select * from numbers(1) where null format JSONEachRow;
|