• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
  • 如何刪除表中的重復記錄?

    發表于:2007-05-25來源:作者:點擊數: 標簽:測試刪除記錄重復中的
    --測試數據 /*----------------------------- 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

    --測試數據
    /*-----------------------------
    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 行)


    原文轉自:http://www.kjueaiud.com

    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>