mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
25 lines
1.4 KiB
SQL
25 lines
1.4 KiB
SQL
drop table if exists test_quantile;
|
|
create table test_quantile (x AggregateFunction(quantileTiming(0.2), UInt64)) engine = Memory;
|
|
insert into test_quantile select medianTimingState(.2)(number) from (select * from numbers(1000) order by number desc);
|
|
select y from (
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile union all
|
|
select finalizeAggregation(x) as y from test_quantile)
|
|
order by y;
|
|
drop table test_quantile;
|