SQL分组查询问题,如何把 在同一字段下具有不同值的 记录 按一定条件进行分组查询统计啊?
教sql语句!有张表如下:号码费用2345612564231356321158954625...........................7896585567898...
教sql语句!
有张表如下:
号码 费用
23456 12
56423 13
56321 15
89546 25
......... .....
........ .....
78965 85
56789 88
通过一条SQL语句能否实现统计10-20元、20-30元.......80-90元的号码个数及费用总计?如何实现?
group by 是把具有相同值的记录归到一组的喔, 假如是按一定条件将这些记录进行分组,有没什么好的方法啊? 展开
有张表如下:
号码 费用
23456 12
56423 13
56321 15
89546 25
......... .....
........ .....
78965 85
56789 88
通过一条SQL语句能否实现统计10-20元、20-30元.......80-90元的号码个数及费用总计?如何实现?
group by 是把具有相同值的记录归到一组的喔, 假如是按一定条件将这些记录进行分组,有没什么好的方法啊? 展开
5个回答
展开全部
select 费用区间=(case when 费用>=10 and 费用<20 then '10-20' when 费用>=20 and 费用<30 then '20-30' end),count(*) as 个数, sum(费用) as 费用总计
from 表
group by (case when 费用>=10 and 费用<20 then '10-20' when 费用>=20 and 费用<30 then '20-30' end)
类似,如果要多个分类,可在case里多加几个 when
from 表
group by (case when 费用>=10 and 费用<20 then '10-20' when 费用>=20 and 费用<30 then '20-30' end)
类似,如果要多个分类,可在case里多加几个 when
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select 号码,
sum(case when 费用 between 10 and 20 then 费用 else 0 end)[10-20],
sum(case when 费用 between 21 and 30 then 费用 else 0 end)[21-30],
sum(case when 费用 between 31 and 40 then 费用 else 0 end)[31-40],
sum(case when 费用 between 41 and 50 then 费用 else 0 end)[41-50],
sum(case when 费用 between 51 and 60 then 费用 else 0 end)[51-60],
sum(case when 费用 between 61 and 70 then 费用 else 0 end)[61-70],
sum(case when 费用 between 71 and 80 then 费用 else 0 end)[71-80]
.....
from 表
group by 号码
sum(case when 费用 between 10 and 20 then 费用 else 0 end)[10-20],
sum(case when 费用 between 21 and 30 then 费用 else 0 end)[21-30],
sum(case when 费用 between 31 and 40 then 费用 else 0 end)[31-40],
sum(case when 费用 between 41 and 50 then 费用 else 0 end)[41-50],
sum(case when 费用 between 51 and 60 then 费用 else 0 end)[51-60],
sum(case when 费用 between 61 and 70 then 费用 else 0 end)[61-70],
sum(case when 费用 between 71 and 80 then 费用 else 0 end)[71-80]
.....
from 表
group by 号码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select 费用/10,sum(费用),count(1) from 表 group by 费用/10
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
declare @t table (hm varchar(10),fy int)
insert @t values ('23456',12)
insert @t values ('56423',13)
insert @t values ('56321',15)
insert @t values ('89546',25)
insert @t values ('78965',85)
insert @t values ('56789',88)
select bj,count(fy) as sl,sum(fy) as hj from (
select *,substring(cast(fy as varchar(10)),1,1) as bj
from @t) a
group by bj
insert @t values ('23456',12)
insert @t values ('56423',13)
insert @t values ('56321',15)
insert @t values ('89546',25)
insert @t values ('78965',85)
insert @t values ('56789',88)
select bj,count(fy) as sl,sum(fy) as hj from (
select *,substring(cast(fy as varchar(10)),1,1) as bj
from @t) a
group by bj
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询