--首先将不是重复的数据提取出来,保存到一个临时表中 select distinct * into #temp from JX_Score --然后删除原来的表 delete from JX_Score --最后往里面插入临时表的数据 insert into jx_score select * from #temp
posted on 2013-12-30 15:44 吴翰哲 阅读(178) 评论(0) 收藏 举报