count( IF ( njid =1 and zxzt = 0, TRUE, NULL ) )
这样就是统计原有的条件中再加上年纪id为1,zxzt为0的条件再进行统计。
ps. 这种首字母拼音的格式非常垃圾,但是公司要求的,求不喷。
首先,使用下面语句:select date, count(date) cnt from user where date is not null group by date
结果:
date cnt
1月 2
2月 2
3月 1
在上面语句基础上改进,使之与要求结果一致:
select max(case when date = '1月' then cnt else 0 end ) 1月,
max(case when date = '2月' then cnt else 0 end ) 2月,
max(case when date = '3月' then cnt else 0 end ) 3月
from (select date, count(date) cnt from user where date is not null group by date)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)