C#实习生 2022-03-07 13:45 采纳率: 60%
浏览 53
已结题

SQLserver AVG函数求1到3月的各项平均值

我写了一部分可以求1到3月的总和,求平均值时数据不对
sql语句如下
select
SUM(case when year(D.RQ)=2021 and month(D.RQ)=1 then D.DYM else 0 end) DYM1,
SUM(case when year(D.RQ)=2021 and month(D.RQ)=1 then D.RY else 0 end) RY1,
SUM(case when year(D.RQ)=2021 and month(D.RQ)=2 then D.DYM else 0 end) DYM2,
SUM(case when year(D.RQ)=2021 and month(D.RQ)=2 then D.RY else 0 end) RY2,
SUM(case when year(D.RQ)=2021 and month(D.RQ)=2 then D.RYOU else 0 end) RYOU2,
SUM(case when year(D.RQ)=2021 and month(D.RQ)=3 then D.DYM else 0 end) DYM3,
SUM(case when year(D.RQ)=2021 and month(D.RQ)=3 then D.RY else 0 end) RY3,
from DXTJ A left join GLY_JBXXB B on A.GLY=B.ID left join DEPT_JBXXB C on A.SGDW=C.DEPEID left join CSJING_SCSJB D on A.JH=D.JH
where JB='油井'
数据库格式如下

img

  • 写回答

2条回答 默认 最新

  • DarkAthena ORACLE应用及数据库设计方案咨询师 2022-03-08 01:51
    关注

    你把你的else 0都删掉试试。

    select
    avg(case when year(D.RQ)=2021 and month(D.RQ)=1 then D.DYM  end) DYM1,
    avg(case when year(D.RQ)=2021 and month(D.RQ)=1 then D.RY  end) RY1,
    avg(case when year(D.RQ)=2021 and month(D.RQ)=2 then D.DYM  end) DYM2,
    avg(case when year(D.RQ)=2021 and month(D.RQ)=2 then D.RY  end) RY2,
    avg(case when year(D.RQ)=2021 and month(D.RQ)=2 then D.RYOU  end) RYOU2,
    avg(case when year(D.RQ)=2021 and month(D.RQ)=3 then D.DYM  end) DYM3,
    avg(case when year(D.RQ)=2021 and month(D.RQ)=3 then D.RY  end) RY3,
    from DXTJ A left join GLY_JBXXB B on A.GLY=B.ID left join DEPT_JBXXB C on A.SGDW=C.DEPEID left join CSJING_SCSJB D on A.JH=D.JH
    where JB='油井'
    

    avg不对的原因是,它的算法是求和再除以非空的行数,你这行数没有发生变化,不是指定月份的数据你给了个0,它当然数据会偏小了

    另外,你确定不在后面加个where条件限定下查询数据的范围么?你这样查,整个表的数据都扫到了

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
    1人已打赏
查看更多回答(1条)

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 3月8日
  • 已采纳回答 3月8日
  • 创建了问题 3月7日

悬赏问题

  • ¥15 请问有会的吗,用MATLAB做
  • ¥15 phython如何实现以下功能?查找同一用户名的消费金额合并—
  • ¥15 ARIMA模型时间序列预测用pathon解决
  • ¥15 孟德尔随机化怎样画共定位分析图
  • ¥18 模拟电路问题解答有偿速度
  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序,怎么查看客户esp32板子上程序及烧录地址
  • ¥50 html2canvas超出滚动条不显示