declare @t table(ID int,xm varchar(20),total int,banji varchar(50))
insert @t
select 1,'张一',100,'A班' union all
select 2,'张二',200,'A班' union all
select 3,'张三',300,'A班' union all
select 4,'张四',400,'A班' union all
select 5,'张五',500,'B班' union all
select 6,'张六',600,'B班' union all
select 7,'张七',700,'B班' union all
select 8,'张八',800,'B班' union all
select 9,'张九',900,'C班' union all
select 10,'张十',1000,'C班' union all
select 11,'张十一',1100,'C班' union all
select 12,'张十二',1200,'C班'
--查询
select * from @t a
where (select count(*) from @t b where b.banji = a.banji and b.total >a.total) <3
--这里是前三名,前五名只需把这里的<3改为<5即可
--结果
/*
ID xm total banji
---------------------------------------------
2 张二 200 A班
3 张三 300 A班
4 张四 400 A班
6 张六 600 B班
7 张七 700 B班
8 张八 800 B班
10 张十 1000 C班
11 张十一 1100 C班
12 张十二 1200 C班
*/
--单纯通过top是不行的,要用到row_number() over()才能取到每个班的分别的前5名select * from (select t.*,row_number() over(partition by 班级 order by 成绩 desc) as fnum from 表名 T) t1 where fnum <=5
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)