Case When和聚合函数count、sum的使用
程序员文章站
2022-07-15 11:14:14
...
需求:
根据贫困标志,取出不同标准下的的人数有多少,以区县位单位。
1代表已脱贫人口;2代表返贫人口;3代表未脱贫
select
t3.region_id as 'regionId',
t3.region_name as 'regionName',
count(case when t1.tricolor = 1 then 1 else null end ) as 'greenTotal',
count(case when t1.tricolor = 2 then 1 else null end ) as 'yellowTotal',
count(case when t1.tricolor = 3 then 1 else null end )as 'redTotal'
from pa_household_member t1
left join pa_household t2 on t2.household_id = t1.household_id
left join system_region t3 on t3.region_id = t2.area
group by t2.area
已知:
count(1) 算上一条记录 count(null)为0;利用此特性进行分类统计。不用写复杂的子查询。
要点:
count在套住case when ..... 例如: count (case when ....end )
结果展示:
推荐阅读
-
MySQL中聚合函数count的使用和性能优化技巧
-
SQL语句中的WHERE、聚合函数(SUM、MIN、MAX、AVG、COUNT)、HAVING
-
Case When和聚合函数count、sum的使用
-
使用SQL语句统计数据时sum和count函数中使用if判断条件的讲解
-
SQL分组函数group by和聚合函数(COUNT、MAX、MIN、AVG、SUM)的几点说明
-
Oracle中decode函数与case when的使用
-
CASE WHEN和decode的使用
-
select子句中case end和decode函数的使用
-
当case when then else end 语句遇上sum或count等统计函数
-
mysql的IFNULL、IF、CASE...WHEN...THEN...函数的使用讲解_MySQL