http://wenku.baidu.com/view/5897f82bcfc789eb172dc89c.html这里的53题
我这样写的
select a.* from 成绩表 a,(select 学号, COUNT(*)as coun from 成绩表 group by 学号 having count(*)>1 ) b 
where a.学号=b.学号 
and 分数 not in (select top (1) 分数 from 成绩表 order by 分数 desc)
order by 分数 desc问题是 93分就是去不掉