Is there a better way to calculate the median (not average)

前端 未结 7 825
我在风中等你
我在风中等你 2021-02-02 15:38

Suppose I have the following table definition:

CREATE TABLE x (i serial primary key, value integer not null);

I want to calculate the MEDIAN o

相关标签:
7条回答
  • 2021-02-02 16:23

    For googlers: there is also http://pgxn.org/dist/quantile Median can be calculated in one line after installation of this extension.

    0 讨论(0)
提交回复
热议问题