aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/aggregate/percentile_and_variance.sql
blob: c75cf50c6c8a8d8bb7064caa9ba6066e63c46b10 (plain) (blame)
1
2
/* postgres can not */
select Math::Round(median(val), -3) as med, Math::Round(stddev(val), -3) as dev from (select cast(value as int) as val from plato.Input);