我在 mysql 中有一个查询,它给了我这个
product count(*)
------- ---------
A 5
B 2
C 3
D 4
E 1
查询很简单
select product,count(*) from dashboard group by product;
现在的问题是我想将一些产品的数量合并到其他产品中,例如预期的输出是
product count(*)
------- ---------
A 7
C 3
D 5
所以计数(A)=计数(A)+计数(B)
计数(c) = 计数(C)
计数(D)= 计数(D) + 计数(E)
我在想这样的事情
select case
when product = 'A' OR product = 'B' then ----
when product = 'C' then ----
end