sql语句统计数量,统计一个字段的值的数量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql语句统计数量,统计一个字段的值的数量相关的知识,希望对你有一定的参考价值。

数据库字段如下
id type level
1 质量 一级
2 服务 二级
3 态度 三级
4 质量 二级
5 态度 一级
现在需要统计的结果为
type 总数量 一级 二级 三级
质量 2 1 1 0
服务 1 0 1 0
态度 2 1 0 1

pivot

--SQL SERVER 2000 静态SQLselect type as type ,
max(case level when '一级' then id else 0 end) 一级,
max(case level when '二级' then id else 0 end) 二级,
max(case level when '三级' then id else 0 end) 三级,
count(id) 总数量
from tb
group by type
然后再汇总,或者可以写个视图就ok了

--SQL SERVER 2000 动态SQL
declare @sql varchar(8000)
set @sql = 'select type '
select @sql = @sql + ' , max(case level when ''' + level + ''' then id else 0 end) [' + level + ']'
from (select distinct level from tb) as a
set @sql = @sql + ' from tb group by type'
exec(@sql)

--SQL SERVER 2005 静态SQL。
select * from (select * from tb) a pivot (max(id) for level in (一级,二级,三级)) b

--SQL SERVER 2005 动态SQL。
declare @sql varchar(8000)
select @sql = isnull(@sql + ',' , '') + level from tb group by level
exec ('select * from (select * from tb) a pivot (max(id) for level in (' + @sql + ')) b')
参考技术A select type,count(*) as 总数量,
sum(case when level='一级' then 1 else 0 end) as 一级,
sum(case when level='二级' then 1 else 0 end) as 二级,
sum(case when level='三级' then 1 else 0 end) as 三级
from table group by type

楼上的应该改改吧本回答被提问者采纳
参考技术B select type,sum(*) as 总数量,
sum(case when level='一级' then 1 else 0 end) as 一级,
sum(case when level='二级' then 1 else 0 end) as 二级,
sum(case when level='三级' then 1 else 0 end) as 三级
from table group by type
参考技术C select type,count(1) from table group by type
union all
select level,count(1) from table group by level

以上是关于sql语句统计数量,统计一个字段的值的数量的主要内容,如果未能解决你的问题,请参考以下文章

sql语句统计数量 统计一个字段出现的数量

SQL语句如何统计数据库当日信息数量

SQL语句:统计指定字段,等于不同值的条数

统计数据方面SQL与HQL

SQL统计本日的更新数量

mysql数据库,sql语句,把一个表中的统计数量,更新到两一个表中