mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
8 lines
175 B
MySQL
8 lines
175 B
MySQL
|
create temporary table test (
|
||
|
arr Array(Array(LowCardinality(String)))
|
||
|
);
|
||
|
|
||
|
insert into test(arr) values ([['a'], ['b', 'c']]);
|
||
|
|
||
|
select arrayFilter(x -> 1, arr) from test;
|