首页 > 数据库 > MySQL > 正文

mysql删除重复数据

2022-07-31 18:43:47
字体:
来源:转载
供稿:网友
        mysql删除重复数据分为两种情况:
一、以一个字段来唯一确定一条记录,可以用以下SQL来删除:
       delete glt_entity_tmp from glt_entity_tmp,(select idd from glt_entity_tmp group by nam having count(*) > 1 ) as t2
where glt_entity_tmp.idd=t2.idd
 
       注意:数据中idd不一致,其它字段信息都一致,如果是一个nam有多于2条重复的记录,要执行多次
 
二、以二个或以上字段来唯一确定一条记录,可以用以下SQL来删除,但要注意每条记录中必须有第三个字段来唯一确定这条记录(使用max删除)
       delete gbi_pd_theme_new_tmp from gbi_pd_theme_new_tmp,(select new_code,the_code,max(the_new_code) as the_new_code from gbi_pd_theme_new_tmp group by new_code,the_code having count(*) > 1) as t2
where gbi_pd_theme_new_tmp.new_code=t2.new_code and gbi_pd_theme_new_tmp.the_code=t2.the_code and gbi_pd_theme_new_tmp.the_new_code=t2.the_new_code
 
       注意:如果是有多于2条重复的记录,要执行多次
       因为此例子中每条记录有一个唯一的字段the_new_code,所以可以用max来删除重复记录。

(编辑:错新网)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表