zoukankan      html  css  js  c++  java
  • 如何删除表中的重复记录?

    我们先从以下例子来分析
    --测试数据
    /*-----------------------------
    select * from tt
    -----------------------------*/
    id          pid        
    ----------- -----------
    1           1
    1           1
    2           2
    3           3
    3           3
    3           3

    (所影响的行数为 6 行)

    首先,如何查询table中有重复记录
    select *,count(1) as rownum
    from tt
    group by id, pid
    having count(1) > 1
    id          pid         rownum     
    ----------- ----------- -----------
    1           1           2
    3           3           3

    (所影响的行数为 2 行)

    方法一:使用distinct和临时表
    if object_id('tempdb..#tmp') is not null
    drop table #tmp
    select distinct * into #tmp from tt
    truncate table tt
    insert into tt select * from #tmp
    方法二:添加标识列
    alter table tt add NewID int identity(1,1)
    go 
    delete from tt  where exists(select 1 from tt a where  a.newid>tt.newid and tt.id=a.id and tt.pid=a.pid)
    go
    alter table tt drop column NewID
    go

    --测试结果
    /*-----------------------------
    select * from tt
    -----------------------------*/
    id          pid        
    ----------- -----------
    1           1
    2           2
    3           3

    (所影响的行数为 3 行)

  • 相关阅读:
    JSP根据身份证号码计算生日
    JSP听课笔记(二)
    JSP听课笔记(一)
    JDBC连接数据库过程(转载)
    PL/SQL
    阅读笔记
    javaScript的一些奇妙动画
    原型与原型链之间一些奥秘
    CSS3 @keyframes 规则
    Java语言中的基本词汇
  • 原文地址:https://www.cnblogs.com/martian6125/p/9631456.html
Copyright © 2011-2022 走看看