zoukankan      html  css  js  c++  java
  • SQL去重复数据

    1、查找表中重复数据,重复数据以单个字段(title)为标识

    select id,title from t_article 
    where title in (
      select title from (
        select title as title from t_article 
        group by title having count(title) > 1
      ) as title
    )
    order by title

    2、删除表中多余的重复数据,重复数据以单个字段(title)为标识,只留有id最小的数据

    delete from t_article 
    where title in (
      select title from (
        select title as title from t_article 
        group by title having count(title) > 1
      ) as title
    )
    and id not in (
      select id from (
        select min(id) as id from t_article t group by title having count(title) > 1
      ) as id
    );

    3、查找表中重复数据,重复数据以(title,source)多个字段为标识

    select id,title,source,upload_time from t_article 
    where (title,source) in (
      select title,source from t_article 
      group by title,source having count(*) > 1
    )
    order by title

    4、删除表中多余的重复数据,重复数据以(title,source)多个字段为标识,只留有id最小的数据

    delete from t_article 
    where id in (
        select id from (
            select id from t_article 
            where (title,source) in (
                select title,source from t_article 
                group by title,source having count(*) > 1
            )
            and id not in (
                select id from (
                    select min(id) as id from t_article 
                    group by title,source having count(*) > 1
                ) as id
            )
        )as id    
    ) 
  • 相关阅读:
    mysql中的round函数的使用
    mysql中日期函数的处理,datediff()函数 与 timestampdiff()函数的区别 及使用。
    easyui datagrid 自定义editor
    好的产品 跟 好的 设计师 很类似
    music
    gd库复制图片做水印
    用gd库画矩形和椭圆
    默认安装wamp修改MySQL密码
    中文验证码
    验证码
  • 原文地址:https://www.cnblogs.com/mjtabu/p/14277859.html
Copyright © 2011-2022 走看看