如何计算板条箱的中位数

时间:2016-04-14 10:31:13

标签: median crate

我正在使用Crate 0.54.7并具有以下表格定义:

CREATE TABLE test (id int PRIMARY KEY, val int);

现在我想得到val的中位数。到目前为止我在Postgresql中使用的查询不起作用:

SELECT percentile_cont(0.5) WITHIN GROUP (ORDER BY val) FROM test;

我有什么方法可以计算出箱子的中位数吗?

1 个答案:

答案 0 :(得分:0)

This is not supported in Crate (as of 0.54.X).

But there are two feature requests on Github