SQL怎么查询某个班级的不同成绩段的总人数?

SQL怎么查询某个班级的不同成绩段的总人数?count(score),但是这个score是分段的。。... SQL怎么查询某个班级的不同成绩段的总人数?
count(score),但是这个score是分段的。。
展开
 我来答
我要注册和登录
2010-04-09 · TA获得超过451个赞
知道小有建树答主
回答量:301
采纳率:100%
帮助的人:420万
展开全部
--建立测试表
create table score (score_id int identity(1,1)
,stu_id int
,class_id int
,course_id int
,score float);
--插入测试数据
insert into score (stu_id,class_id,course_id,score)
select 1,1,1,89
union
select 2,1,1,59
union
select 3,1,1,64
union
select 4,1,1,82
union
select 5,1,1,57
union
select 6,1,1,92
union
select 7,1,1,85
union
select 8,1,1,96
union
select 9,1,1,75 ;
--检验测试数据
select * from score;

--1.如果以10分1档 如下
select count(1) ct,round(score-5,-1) tt
from score
where class_id=1 and course_id=1
group by round(score-5,-1);

--2.可以在when条件增减粒度
select count(1) ct,ss from
(
select case when score <60 then '不及格'
when score <70 and score >60 then '60'
when score <80 and score >70 then '70'
when score <90 and score >80 then '80'
when score <100 and score >90 then '90'
else '100'
end
ss from score
where class_id=1 and course_id=1
) tt group by ss

还有楼上方法经测试效率比较好。
select sum(case when score <60 then 1 else 0 end) '不及格'
,sum(case when score <70 and score >60 then 1 else 0 end) '60'
, sum(case when score <80 and score >70 then 1 else 0 end) '70'
, sum(case when score <90 and score >80 then 1 else 0 end) '80'
, sum(case when score <100 and score >90 then 1 else 0 end) '90'
, sum(case when score =100 then 1 else 0 end) '100'
from score
暴雁菱0e1
2010-04-09 · TA获得超过2004个赞
知道小有建树答主
回答量:1192
采纳率:0%
帮助的人:0
展开全部
select sum(case score when .. then 1 else 0 end) 分数段1,....
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ymzong
2010-04-09
知道答主
回答量:10
采纳率:0%
帮助的人:10.8万
展开全部
where score between ....
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式