select distinct * into #Tmp from 学生考试信息
drop table 学生考试信息
select * into 学生考试信息 from #Tmp
drop table #Tmp
去除sql server中重复的数据--完全相同的记录方法
最新推荐文章于 2023-01-04 15:55:20 发布
select distinct * into #Tmp from 学生考试信息
drop table 学生考试信息
select * into 学生考试信息 from #Tmp
drop table #Tmp