How to calculate Median using MySQL

Posted codingyangmao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了How to calculate Median using MySQL相关的知识,希望对你有一定的参考价值。

SET @ROW_NUMBER:=0; 
select round(avg(LAT_N),4) from 
(
select 
@Row_Number := @Row_Number +1 as count_of_group, 
LAT_N ,

(SELECT 
            COUNT(*)
        FROM
            Station 
        ) AS total_of_group

from station

 
order by Lat_N asc
    ) 
    tmp 
    where count_of_group
    between total_of_group / 2.0 AND total_of_group / 2.0 + 1

 

以上是关于How to calculate Median using MySQL的主要内容,如果未能解决你的问题,请参考以下文章

How To Size Your Apache Flink® Cluster: A Back-of-the-Envelope Calculation

How to calculate the z-graph transformation problem with the time complexity of o(n)(Z字形变换问题)

csharp 来自http://stackoverflow.com/questions/2510383/how-can-i-calculate-what-date-good-friday-falls-

Oracle12c: How to create CDB in manually

Oracle12c: How to create CDB in manually

AOJ 2230 How to Create a Good Game(费用流)