sql删除重复记录(记录完全相同)

select distinct * into #Tmp from fengongsi
drop table fengongsi
select * into fengongsi from #Tmp
drop table #Tmp

你可能感兴趣的:(转发)