SQL 查询中位数,并保留四位小数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL 查询中位数,并保留四位小数相关的知识,希望对你有一定的参考价值。
列表
代码:
select distinct round(nth_value(lat_n,(select round(count(lat_n)/2) from station))
over (order by lat_n asc
RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING),4) as median_lat
from station;
以上是关于SQL 查询中位数,并保留四位小数的主要内容,如果未能解决你的问题,请参考以下文章