Average and Case in SQL

杀马特。学长 韩版系。学妹 提交于 2019-12-02 10:35:57

I think in your full query, you are missing the GROUP BY clause, eg

SELECT ...
FROM   ....
WHERE   ..
GROUP BY FAS1.ScoreTypeID

I think this is what you want:

 coalesce(avg(CASE WHEN FAS1.ScoreTypeID in (22, 52) THEN fas1.totalscore end), 0) AS   'Total Score'

This takes the average when the score is 22 or 52. If there are no values present, it returns NULL. The coalesce turns the NULL into a 0.

Suroh

To keep it in the format you have chosen you could use:

CASE WHEN FAS1.ScoreTypeID IN (22,52) THEN avg(fas1.totalscore) ELSE 0
  END  AS   'Total Score', 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!