Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 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;
有什么方法可以计算 Crate 中的中位数吗?
这在 Crate 中不受支持(从 0.54.X 开始)。
但是 Github 上有两个功能请求