Missing 'Median' Aggregate Function in Django?

前端 未结 6 1053
孤城傲影
孤城傲影 2021-01-04 13:09

The Development version of Django has aggregate functions like Avg, Count, Max, Min, StdDev, Sum, and Variance (link text). Is there a reason Median is missing from the list

6条回答
  •  无人及你
    2021-01-04 13:26

    FWIW, you can extend PostgreSQL 8.4 and above to have a median aggregate function with these code snippets.

    Other code snippets (which work for older versions of PostgreSQL) are shown here. Be sure to read the comments for this resource.

提交回复
热议问题