代码改变世界

SQL中删除表中重复行

2014-01-02 11:46  秋0730  阅读(106)  评论(0编辑  收藏  举报

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