我尝试了几种不同的方法,但似乎无法发挥作用:
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))也没有用。
答案 0 :(得分:2)
这会做你想做的吗?
SELECT
COUNT(*)
FROM
Table1
WHERE month in (1,2,3)