来自同一表的 3 个计数的 SQL 总和(不同月份子句)
我尝试了几种不同的方法,但似乎从来没有奏效:
SUM(
Select count(*) from table1 where month = 1 +
Select count(*) from table1 where month = 2 +
Select count(*) from table1 where month = 3
)
正确的方法是什么? SUM(IF(case)) 也不起作用。
I have tried this a few different ways and it never seems to work:
SUM(
Select count(*) from table1 where month = 1 +
Select count(*) from table1 where month = 2 +
Select count(*) from table1 where month = 3
)
What is the proper way to do it? SUM(IF(case)) also didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这会做你想要的吗?
Will this do what you want?