mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
37 lines
2.0 KiB
SQL
37 lines
2.0 KiB
SQL
select uniqStateMap(map(1, number)) from numbers(10);
|
|
select uniqStateForEachMapForEachMap(map(1, [map(1, [number, number])])) from numbers(10);
|
|
select uniqStateForEachResample(30, 75, 30)([number, number + 1], 30) from numbers(10);
|
|
select uniqStateMapForEachResample(30, 75, 30)([map(1, number)], 30) from numbers(10);
|
|
select uniqStateForEachMerge(x) as y from (select uniqStateForEachState([number]) as x from numbers(10));
|
|
select uniqMerge(y[1]) from (select uniqStateForEachMerge(x) as y from (select uniqStateForEachState([number]) as x from numbers(10)));
|
|
|
|
drop table if exists test;
|
|
create table test (x Map(UInt8, AggregateFunction(uniq, UInt64))) engine=Memory;
|
|
insert into test select uniqStateMap(map(1, number)) from numbers(10);
|
|
select * from test format Null;
|
|
select mapApply(k, v -> (k, finalizeAggregation(v)), x) from test;
|
|
truncate table test;
|
|
drop table test;
|
|
|
|
create table test (x Map(UInt8, Array(Map(UInt8, Array(AggregateFunction(uniq, UInt64)))))) engine=Memory;
|
|
insert into test select uniqStateForEachMapForEachMap(map(1, [map(1, [number, number])])) from numbers(10);
|
|
select mapApply(k, v -> (k, arrayMap(x -> mapApply(k, v -> (k, arrayMap(x -> finalizeAggregation(x), v)), x), v)), x) from test;
|
|
select * from test format Null;
|
|
truncate table test;
|
|
drop table test;
|
|
|
|
create table test (x Array(Array(AggregateFunction(uniq, UInt64)))) engine=Memory;
|
|
insert into test select uniqStateForEachResample(30, 75, 30)([number, number + 1], 30) from numbers(10);
|
|
select arrayMap(x -> arrayMap(x -> finalizeAggregation(x), x), x) from test;
|
|
select * from test format Null;
|
|
truncate table test;
|
|
drop table test;
|
|
|
|
create table test (x Array(Array(Map(UInt8, AggregateFunction(uniq, UInt64))))) engine=Memory;
|
|
insert into test select uniqStateMapForEachResample(30, 75, 30)([map(1, number)], 30) from numbers(10);
|
|
select arrayMap(x -> arrayMap(x -> mapApply(k, v -> (k, finalizeAggregation(v)), x), x), x) from test;
|
|
select * from test format Null;
|
|
truncate table test;
|
|
drop table test;
|
|
|