aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/aggregate/percentiles_ungrouped.sql
blob: 045b66c239423fed8cc6e6e5823fa6cb01fb4f13 (plain) (blame)
1
2
/* postgres can not */
select median(val) as med, percentile(val, 0.8) as p80 from (select cast(value as int) as val from plato.Input);