zoukankan      html  css  js  c++  java
  • 利用 Sql Server 游标删除重复记录

    这段时间因项目需要导入原有的数据到新库中,遭遇了数据重复的问题,需删除重复的数据。我采用游标的方法解决此问题。 Sql 语句如下以免忘记。
    删除重复数据,只保留记录号最大的
    declare mycursor cursor 
        
    for
        
    select addinip from testdb group by addinip having count(addinip)>1
    open mycursor
    declare @ip sysname
    fetch next from mycursor into @ip
    while(@@fetch_status=0)
    begin
        
    print @ip
        
    declare @aid int 
        
    select @aid=max(autoid) from testdb where addinip=@ip
        
    print @aid
        
    -- 删除重复数据,只保留记录号最大的那条记录 
        delete from testdb where autoid <> @aid and addinip=@ip

        
    fetch next from mycursor into @ip
    end
    close mycursor
    deallocate mycursor 


  • 相关阅读:
    flex布局
    input框不能输入问题
    JS的innerHTML完成注册表
    CSS的z-index属性和box-shadow属性
    JS个人笔记
    css照片墙
    透明度设置
    a标签的name属性
    iframe标签
    title属性
  • 原文地址:https://www.cnblogs.com/infozero/p/1657282.html
Copyright © 2011-2022 走看看