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    
    ) 
  • 相关阅读:
    圖標網址
    webmethod Ajax请求格式和返回类型 汇总
    第一阶段图标动效打卡
    大数据可视化--控件设计
    Python 多任务(进程) day1(3)
    Python 多任务(进程) day1(2)
    Python 多任务(进程) day1(1)
    Python 多任务(线程) day2 (2)
    Python 多任务(线程) day1
    TCP和UDP的一些注意事项
  • 原文地址:https://www.cnblogs.com/mjtabu/p/14277859.html
Copyright © 2011-2022 走看看