1、
select top 20 字段B from 表A order by 字段B desc2、
select 
    top 20 T.字段B 
from 
    表A T 
where 
    T.学号 not in(select top 20 学号 from 表A order by 字段B desc) 
order by 
    T.字段B desc3、
select 
    top 20 T.字段B 
from 
    表A T 
where 
    T.学号 not in(select top 40 学号 from 表A order by 字段B desc) 
order by 
    T.字段B desc4、
select 
    top 20 T.字段B 
from 
    表A T 
where 
    T.学号 not in(select top 60 学号 from 表A order by 字段B desc) 
order by 
    T.字段B desc