sql语句删除由于无主键导致完全重复的数据方法

sql语句删除由于无主键导致完全重复的数据方法

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

 

posted @ 2013-09-23 17:14  程序员徐坤  阅读(413)  评论(0编辑  收藏  举报