sql语句如何统计不同字段数量

发布时间:2019-09-07编辑:脚本学堂
有关sql数据库中统计不同字段数量的语句,对一个表A中字段进行查询,不同类型的字段进行数据统计,一起学习下。

对一个表A中字段进行查询,不同类型的字段进行数据统计;
 

select  count(1)  from A  where strwhere //对符合条件的行数进行统计
select count(filed) from A  where strwhere //对符合条件列的行数进行统计,基本同上

要点:
1、当字段存在类型,且为0,1时,最为简单,但常用如:1.男,女;2.是,否;等可以用 0,1来作为类型的正反类型时;
 

select sum(filde1),sum(filde2) from A where strwhere

2、当查询多个字段,且为固定类型时(typeA,typeB)
 

select  sum(case when  filed1=typeA1  then 1 else 0 end),sum(case when  filed2=typeA2 then 1 else 0 end) from A  where strwhere