zoukankan      html  css  js  c++  java
  • 气象用sql语句搜寻极大值等(期待更优语句)

    --最高温度 最高温度出现时间 最低温度 最低温度出现时间
    select top 1 BCMX,BCMXT from F7471DataTable where bcmx=(select MAX(BCMX) from F7471DataTable where area_Code=1 and (Area_Date between '2015-05-14 08:00:00' and '2015-05-15 11:00:00')) union all select top 1 BCMN,BCMNT from F7471DataTable where bcmx=(select min(BCMN) from F7471DataTable where area_Code=1 and (Area_Date between '2015-05-14 08:00:00' and '2015-05-15 11:00:00'))

    --极小值测试
    select MIN(bcmn) from F7471DataTable where Area_Date between '2015-05-14 08:00:00' and '2015-05-15 11:00:00'

    --统计查询 小时雨量
    select SUM(BA) from F7471DataTable where area_Code=1 and (Area_Date between '2015-05-14 08:00:00' and '2015-05-15 11:00:00')

    --最小能见度统计 最小时间 最大风速统计 最小风速时间 最大风向统计
    select top 1 BTMN,BTMNT from F7471DataTable where BTMN=(select min(BTMN) from F7471DataTable where area_Code=1 and (Area_Date between '2015-05-14 08:00:00' and '2015-05-15 11:00:00')) union all select top 1 AFMX,AFMXT from F7471DataTable where AFMX=(select max(AFMX) from F7471DataTable where area_Code=1 and (Area_Date between '2015-05-14 08:00:00' and '2015-05-15 11:00:00')) union all select top 1 AEMX,AFMXT from F7471DataTable where AEMX=(select max(AEMX) from F7471DataTable where area_Code=1 and (Area_Date between '2015-05-14 08:00:00' and '2015-05-15 11:00:00'))


    --最高路面温度 最高路面温度时间 最低路面温度 最低路面温度时间
    select top 1 LGHMX,LGHMXT from F7471DataTable where LGHMX=(select MAX(LGHMX) from F7471DataTable where area_Code=1 and (Area_Date between '2015-05-14 08:00:00' and '2015-05-15 13:00:00')) union all select top 1 LGHMN,LGHMNT from F7471DataTable where LGHMN=(select min(LGHMN) from F7471DataTable where area_Code=1 and (Area_Date between '2015-05-14 08:00:00' and '2015-05-15 13:00:00'))

  • 相关阅读:
    字节流与字符流,字节流和字符流的使用哪个多?
    java 读写操作大文件 BufferedReader和RandomAccessFile
    hibernate官网文档
    阿里云centos怎么用xshell5登陆
    STM8L使用外部8M HSE
    vscode函数注释添加【转载】
    某个通信的异常判断存在于两个任务中时计算通信超时的一种思路
    STM32F0芯片读保护
    FrameworkCubeMX.gpdsc missing的问题
    git忽略已经提交的文件【转载】
  • 原文地址:https://www.cnblogs.com/lierjie/p/4505952.html
Copyright © 2011-2022 走看看