手机
当前位置:查字典教程网 >编程开发 >数据库其他 >SQL语句实现删除重复记录并只保留一条
SQL语句实现删除重复记录并只保留一条
摘要:复制代码代码如下:deleteWeiBoTopicswhereIdin(selectmax(Id)fromWeiBoTopicsgroupb...

复制代码 代码如下:

delete WeiBoTopics where Id in(select max(Id) from WeiBoTopics group by WeiBoId,Title having COUNT(*) > 1);

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,seq having count(*) > 1) and seq in (select 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)

【SQL语句实现删除重复记录并只保留一条】相关文章:

Select data from an Excel sheet in MSSQL

详细讲解PostgreSQL中的全文搜索的用法

MSSQL内连接inner join查询方法

超大数据量存储常用数据库分表分库算法总结

海量数据库的查询优化及分页算法方案集合2/2

WordPress导入数据库出现”Unknown collation: ‘utf8mb4_unicode_ci”错误的解决办法

数据库同步优化技巧分享

SQL中代替Like语句的另一种写法

SQL四舍五入、向下取整、向上取整函数介绍

让你的insert操作速度增加1000倍的方法

精品推荐
分类导航