简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

sql删除重复数据只保留一条

来源:易贤网   阅读:1382 次  日期:2014-12-10 09:48:39

温馨提示:易贤网小编为您整理了“sql删除重复数据只保留一条”,方便广大网友查阅!

用sql语句,删除掉重复项只保留一条

在几千条记录里,存在着些相同的记录,如何能用sql语句,删除掉重复的呢

1、查找表中多余的重复记录,重复记录是根据单个字段(peopleid)来判断

select * from people

where peopleid in (select peopleid from people group by peopleid having count(peopleid) > 1)

2、删除表中多余的重复记录,重复记录是根据单个字段(peopleid)来判断,只留有rowid最小的记录

delete from people

where peoplename in (select peoplename from people group by peoplename having count(peoplename) > 1)

and peopleid not in (select min(peopleid) from people group by peoplename having count(peoplename)>1)

3、查找表中多余的重复记录(多个字段)

select * from vitae a

where (a.peopleid,a.seq) in (select peopleid,seq from vitae group by peopleid,seq having count(*) > 1)

4、删除表中多余的重复记录(多个字段),只留有rowid最小的记录

delete from vitae a

where (a.peopleid,a.seq) in (select peopleid,seq from vitae group by peopleid,seq having count(*) > 1)

and rowid not in (select min(rowid) from vitae group by peopleid,seq having count(*)>1)

5、查找表中多余的重复记录(多个字段),不包含rowid最小的记录

select * from vitae a

where (a.peopleid,a.seq) in (select peopleid,seq from vitae group by peopleid,seq having count(*) > 1)

and rowid not in (select min(rowid) from vitae group by peopleid,seq having count(*)>1)

6.消除一个字段的左边的第一位:

update tablename set [title]=right([title],(len([title])-1)) where title like '村%'

7.消除一个字段的右边的第一位:

update tablename set [title]=left([title],(len([title])-1)) where title like '%村'

8.假删除表中多余的重复记录(多个字段),不包含rowid最小的记录

update vitae set ispass=-1

where peopleid in (select peopleid from vitae group by peopleid

alter table mytable drop index mdl_tag_use_ix;//mdl_tag_use_ix是上表查出的索引名,key_name

更多信息请查看IT技术专栏

更多信息请查看数据库
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:mysql中如何查看和删除唯一索引(数据库)
下一篇:关于ado.net数据库操作中的增删改查讲解
易贤网手机网站地址:sql删除重复数据只保留一条
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!