学生表 如下:

SQL面试题_自动编号

 

删除除了自动编号不同, 其他都相同的学生冗余信息 

delete tablename
where 自动编号 not in(
select min( 自动编号)
from tablename
group by 学号,姓名,课程编号,课程名称,分数)