我有这张桌子:
MonthList (month_name, ticket)
我想获得特定月份发生的次数。
例如在第二季度,我运行以下查询:
SELECT month_name as 'Month', count('Month') as 'Ticket Count' from Monthlist
where month_name in ('May', 'June', 'July')
group by Month order by Month asc
现在,如果 May 没有行,May 根本不会在结果中返回,我会得到这样的结果:
6月5日
7月10日
我希望上面的列表也包括May 0
.