mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
9 lines
336 B
SQL
9 lines
336 B
SQL
create table named_tuples engine File(JSONEachRow)
|
|
settings output_format_json_named_tuples_as_objects = 1
|
|
as select cast(tuple(number, number * 2), 'Tuple(a int, b int)') c
|
|
from numbers(3);
|
|
|
|
select * from named_tuples format JSONEachRow settings output_format_json_named_tuples_as_objects = 1;
|
|
|
|
drop table named_tuples
|