数据清理——删除多个字段重复的记录
Posted 山涧清泉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据清理——删除多个字段重复的记录相关的知识,希望对你有一定的参考价值。
数据库内容,随机编了一些数据,其中认为两个字段Name、Address1一致为重复记录,保留其中一条
- 删除两个字段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 )
以上是关于数据清理——删除多个字段重复的记录的主要内容,如果未能解决你的问题,请参考以下文章