sql删除重复数据

declare @max integer,@id integer
declare cur_rows cursor local for select id,count(*from 表名 group by id 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 表名 where id = @id
    
fetch cur_rows into @id,@max
end
close cur_rows
set rowcount 0

posted on 2009-05-29 19:51  seaven  阅读(185)  评论(0编辑  收藏  举报

导航