博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL 查询中位数,并保留四位小数
阅读量:5334 次
发布时间:2019-06-15

本文共 255 字,大约阅读时间需要 1 分钟。

列表

代码:

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;

转载于:https://www.cnblogs.com/Angella/p/6701544.html

你可能感兴趣的文章
Android广播——短信拦截
查看>>
WIN10配置MongoDB
查看>>
iOS resign code with App Store profile and post to AppStore
查看>>
python 表格操作
查看>>
LeetCode 84. Largest Rectangle in Histogram
查看>>
LeetCode Two Sum III - Data structure design
查看>>
session和xsrf
查看>>
Failed to initialize NVML: GPU access blocked by the operating system
查看>>
Ant Trip HDU - 3018(欧拉路的个数 + 并查集)
查看>>
wireshark问题现象分析
查看>>
【转载】JAVA IO 流的总结
查看>>
TensorFlow---image recognition--classify_image运行、文件说明与错误(路径)解决
查看>>
原生JavaScript封装Ajax
查看>>
2016年7月总结
查看>>
一周学会Mootools 1.4中文教程:(1)Dom选择器
查看>>
Cookie与Session
查看>>
配置redis外网可访问
查看>>
haproxy 配置https 同时技持443 80端口
查看>>
js正则备忘
查看>>
跟随大神实现简单的Vue框架
查看>>