zoukankan      html  css  js  c++  java
  • 用一条sql语句删除表中所相同的记录

    如何用一条sql语句删除表中所相同的记录?

    删除重复数据 

    一、具有主键的情况 
    a.具有唯一性的字段id(为唯一主键) 
    delete table 
    where id not in 
    ( 
    select max(id) from table group by col1,col2,col3... 
    ) 
    group by 子句后跟的字段就是你用来判断重复的条件,如只有col1, 
    那么只要col1字段内容相同即表示记录相同。 

    b.具有联合主键 
    假设col1+','+col2+','...col5 为联合主键 
    select * from table where col1+','+col2+','...col5 in ( 
    select max(col1+','+col2+','...col5) from table 
    where having count(*)>1 
    group by col1,col2,col3,col4 
    ) 
    group by 子句后跟的字段就是你用来判断重复的条件, 
    如只有col1,那么只要col1字段内容相同即表示记录相同。 

    c:判断所有的字段 
    select * into #aa from table group by id1,id2,.... 
    delete table 
    insert into table 
    select * from #aa 

    二、没有主键的情况 

    a:用临时表实现 
    select identity(int,1,1) as id,* into #temp from ta 
    delect #temp 
    where id not in 
    ( 
    select max(id) from # group by col1,col2,col3... 
    ) 
    delete table ta 
    inset into ta(...) 
    select ..... from #temp 

    b:用改变表结构(加一个唯一字段)来实现 
    alter table 表 add newfield int identity(1,1) 
    delete 表 
    where newfield not in 
    ( 
    select min(newfield) from 表 group by 除newfield外的所有字段 
    ) 

    alter table 表 drop column newfield
     ————————————————————————————————————————————
    在数据库里表的rowid是唯一的所以相同的记录rowid是不同的可以分两步做因为 
    一:查重复记录 
    select rowid,bm,mc from 表名1 where 表1.rowid!=(select max(rowid) from 
    表1 b(别名) where 表1.bm=b.bm and 表.mc=b.mc); 
    二:删除重复记录 
    delete from 表1 where 表1.rowid!=(select max(rowid) from 表1.b where 表1.bm=b.bm and 表1.mc=b.mc); 
    这段SQL的功能是查找重复的记录,然后保留rowid号最大的那条记录 将其余的相同记录删除
  • 相关阅读:
    [转]游戏开发指南
    [转]C++接口定义及实现举例
    [转]关于模板函数/模板类编译成DLL
    [转]游戏程序员要求
    [转]如何定位Release程序崩溃原因
    [转]对0基础MFC者的一点建议
    [转]链接警告 LNK4098
    动态调用WCF
    动态添加删除WCF服务类包
    将Xaml文档转成XPS文档[转]
  • 原文地址:https://www.cnblogs.com/zhangchenliang/p/1643666.html
Copyright © 2011-2022 走看看