码迷,mamicode.com
首页 > 其他好文 > 详细

输出重复数据

时间:2016-10-19 13:51:33      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

 sql:

       select distinct * into #tmp from tablename

       drop table tablename

       select * into tablename from #tmp

       drop table #tmp

2.用游标进行删除

declare @max integer,@id integer 
declare cur_rows cursor local for select 主字段,count(*) from tablename group by 主字段 having count(*) > 1 
open cur_rows 
fetch cur_rows into @id,@max 
while @@fetch_status=0 
begin 
select @max = @max -1 
set rowcount @max 
delete from tablename where 主字段= @id 
fetch cur_rows into @id,@max 
end 
close cur_rows 
set rowcount 0

输出重复数据

标签:

原文地址:http://www.cnblogs.com/watchfluture/p/5976787.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!