SQL 重复记录问题的处理方法小结
程序员文章站
2023-12-10 15:41:52
1、查找重复记录 ①如果只是不想在查询结果中存在重复记录, 可以加distinct select distinct * from testtable ②如果是想查询重复的记...
1、查找重复记录
①如果只是不想在查询结果中存在重复记录, 可以加distinct
select distinct * from testtable
②如果是想查询重复的记录及其数量
select userid,username,count(*) as '记录数'
from testtable
group by userid,username
having count(*)>1
③id不重复, 但是字段重复的记录只显示一条
select * from testtable where userid in
(select max(userid) as userid from testtable group by username,sex,place)
2、删除重复记录
①一种思路是利用临时表, 把查询到的无重复记录填充到临时表, 再把临时表的记录填充回原始表
select distinct * into #temp from testtable
drop table testtable
select * into testtable from #temp
drop table #temp
②删除id不重复, 但是字段重复的记录(就是按字段查询出相同字段记录中最大的id,然后保留此记录, 删除其他记录).(group by 的字段, 有点麻烦).
delete testtable where userid not in
(select max(userid) as userid from testtable group by username,sex,place)
①如果只是不想在查询结果中存在重复记录, 可以加distinct
select distinct * from testtable
②如果是想查询重复的记录及其数量
select userid,username,count(*) as '记录数'
from testtable
group by userid,username
having count(*)>1
③id不重复, 但是字段重复的记录只显示一条
select * from testtable where userid in
(select max(userid) as userid from testtable group by username,sex,place)
2、删除重复记录
①一种思路是利用临时表, 把查询到的无重复记录填充到临时表, 再把临时表的记录填充回原始表
select distinct * into #temp from testtable
drop table testtable
select * into testtable from #temp
drop table #temp
②删除id不重复, 但是字段重复的记录(就是按字段查询出相同字段记录中最大的id,然后保留此记录, 删除其他记录).(group by 的字段, 有点麻烦).
delete testtable where userid not in
(select max(userid) as userid from testtable group by username,sex,place)
推荐阅读
-
mysql从执行.sql文件时处理 换行的问题
-
Android编程中延后处理事件的方法小结
-
sqlserver中通过osql/ocmd批处理批量执行sql文件的方法
-
SQL中WHERE变量IS NULL条件导致全表扫描问题的解决方法
-
SQL对时间处理的语句小结
-
SQL语句实现删除ACCESS重复记录的两种方法
-
Android NavigationBar问题处理的方法
-
sql server 2000阻塞和死锁问题的查看与解决方法
-
SQL Server 2005 数据库转 SQL Server 2000的方法小结
-
MS SQL Server2014链接到MS SQL Server 2000的解决方案及问题处理