我有这样的查询
select `temp`, IfNULL(count(id),0) t
from survey
where `temp`<>'NULL' and `temp`<> '' and date(submitdate)='date'
group by `temp
带 o/p
temp t
A1 1
但如果没有记录,以下是所选日期发生的情况:我没有得到任何结果。答案就像 A1,A2,A3
我需要这样的o/p
temp t
A1 1
A2 0
A3 0