SQL 删除表中重复记录只剩一条
Posted Golden翼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL 删除表中重复记录只剩一条相关的知识,希望对你有一定的参考价值。
今天不小心插入数据时插入重复了
这表中没有任何主键外键,随便插入或删除
网上查了很多复杂的语句都没有解决问题
最后用delete top (1) 解决问题
delete top (1) from Persion where name = ‘xiaomin‘
也可以用
update top (1) from person where name =‘xxxx‘ delete from person where name = ‘xxxx‘
没那么复杂
以上是关于SQL 删除表中重复记录只剩一条的主要内容,如果未能解决你的问题,请参考以下文章