sql语句删除由于无主键导致完全重复的数据方法
select distinct * into #Tmp from t_column drop table t_column select * into t_column from #Tmp drop table #Tmp