mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
7 lines
218 B
SQL
7 lines
218 B
SQL
drop table if exists id_val;
|
|
|
|
create table id_val(id Int32, val Array(Int32)) engine Join(ANY, LEFT, id) settings join_use_nulls = 1;
|
|
select joinGet(id_val, 'val', toInt32(number)) from numbers(1);
|
|
|
|
drop table id_val;
|