SQL删除重复记录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL删除重复记录相关的知识,希望对你有一定的参考价值。
--删除表中多余的重复记录,重复记录是根据单个字段(ChangCiId)来判断,只留有Id最大的记录
delete from tb_FootballMatch
where ChangCiId in (select ChangCiId from tb_FootballMatch group by ChangCiId having count
(ChangCiId) > 1)
and Id not in (select max(Id) from tb_FootballMatch group by ChangCiId having count(ChangCiId
)>1)
以上是关于SQL删除重复记录的主要内容,如果未能解决你的问题,请参考以下文章