来自同一表的 3 个计数的 SQL 总和(不同月份子句)

发布于 2024-12-03 11:57:54 字数 243 浏览 1 评论 0原文

我尝试了几种不同的方法,但似乎从来没有奏效:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮凉 2024-12-10 11:57:54

这会做你想要的吗?

SELECT
COUNT(*)
FROM
Table1
WHERE month in (1,2,3)

Will this do what you want?

SELECT
COUNT(*)
FROM
Table1
WHERE month in (1,2,3)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文