码迷,mamicode.com
首页 > 其他好文 > 详细

数据清理——删除多个字段重复的记录

时间:2018-10-08 22:14:54      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:select   重复   保留   重复记录   分享图片   add   内容   group by   png   

数据库内容,随机编了一些数据,其中认为两个字段Name、Address1一致为重复记录,保留其中一条

技术分享图片

  1. 删除两个字段Name、Address1一致重  复的记录,保留一条:
    • 找出,( 如果没有第三行,会有什么问题呢?可将示例数据中 ID 为4的行,Name字段改为Tom测试一下)
1 select * from tableabc
2 where Name in( select Name from tableabc group by Name, Address1 having count(Name) > 1)
3 and Address1 in( select Address1 from tableabc group by Name, Address1 having count(Address1) > 1)
    • 删除
1 select * from tableabc 
2 where Name in( select Name from tableabc group by Name, Address1 having count(Name) > 1)
3 and Address1 in( select Address1 from tableabc group by Name, Address1 having count(Address1) > 1)
4 and ID not in(select max(ID) from tableabc group by Name,Address1 having count(Name) > 1 )

数据清理——删除多个字段重复的记录

标签:select   重复   保留   重复记录   分享图片   add   内容   group by   png   

原文地址:https://www.cnblogs.com/sjqq/p/9757398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!