mysql统计数据,如何把空的也显示出来,我用group by,但是空的数据并不能显示出来,求解答............
发布网友
发布时间:2022-05-13 22:37
我来回答
共2个回答
热心网友
时间:2023-11-03 04:30
早说清楚啊
SELECT month,(case when type="member_reg" then count(*) when type="Null" then 0 end) as tal FROM `total` group by month order by month ;
热心网友
时间:2023-11-03 04:30
用自连接啊!追问请问怎么用自连接呀?
id month(月份) time(时间) type(统计的类型)
1 2 1393558495 member_reg (会员注册量)
表名total