SQL操作语句之查询及删除重复记录的方法
delete from 表
where id not in(select min(id) from 表 group by name ) //删除重复名字的记录
删除之前请用语句
select *
from 表
where id in(select min(id) from 表 group by name )
查看能保留下来的数据。
eg.delete from T_bbs_subject
where subjectId not in(select min(subjectId) from T_bbs_subject group by clsid )
几个删除重复记录的SQL语句
(1)用group by方法
查数据:
select count(num), max(name) from student --列出重复的记录数,并列出他的name属性
group by num
having count(num) >1 --按num分组后找出表中num列重复,即出现次数大于一次
删数据:
delete from student
group by num
having count(num) >1
这样的话就把所有重复的都删除了。
查询重复
select * from tablename where id in (select id from tablename group by id having count(id) > 1)
select * from vitae a where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by peopleId,seq having count(*) > 1)
在A表中存在一个字段“name”,
而且不同记录之间的“name”值有可能会相同,
现在就是需要查询出在该表中的各记录之间,“name”值存在重复的项;
Select Name,Count(*) From A Group By Name Having Count(*) > 1
Select Name,sex,Count(*) From A Group By Name,sex Having Count(*) > 1
--I、Name相同ID最小的记录,方法在SQl05时,效率高于、
方法:
Select * from #T a where not exists(select from #T where Name=a.Name and ID<a.ID) 方法:
select a.* from #T a join (select min(ID)ID,Name from #T group by Name) b on a.Name=b.Name and a.ID=b.ID 方法:
select * from #T a where ID=(select min(ID) from #T where Name=a.Name) 方法:
select a.* from #T a join #T b on a.Name=b.Name and a.ID>=b.ID group by a.ID,a.Name,a.Memo having count()= 方法:
select * from #T a group by ID,Name,Memo having ID=(select min(ID)from #T where Name=a.Name) 方法:
select * from #T a where (select count() from #T where Name=a.Name and ID<a.ID)= 方法:
select * from #T a where ID=(select top ID from #T where Name=a.name order by ID) 方法:
select * from #T a where ID!>all(select ID from #T where Name=a.Name) 方法(注:ID为唯一时可用):
select * from #T a where ID in(select min(ID) from #T group by Name) --SQL2005: 方法:
select ID,Name,Memo from (select *,min(ID)over(partition by Name) as MinID from #T a)T where ID=MinID 方法: select ID,Name,Memo from (select *,row_number()over(partition by Name order by ID) as MinID from #T a)T where MinID=
--II、Name相同ID最大的记录,与min相反:
方法:
Select * from #T a where not exists(select from #T where Name=a.Name and ID>a.ID) 方法:
select a.* from #T a join (select max(ID)ID,Name from #T group by Name) b on a.Name=b.Name and a.ID=b.ID order by ID 方法:
select * from #T a where ID=(select max(ID) from #T where Name=a.Name) order by ID 方法:
select a.* from #T a join #T b on a.Name=b.Name and a.ID<=b.ID group by a.ID,a.Name,a.Memo having count()= 方法:
select * from #T a group by ID,Name,Memo having ID=(select max(ID)from #T where Name=a.Name) 方法:
select * from #T a where (select count() from #T where Name=a.Name and ID>a.ID)= 方法:
select * from #T a where ID=(select top ID from #T where Name=a.name order by ID desc) 方法:
select * from #T a where ID!<all(select ID from #T where Name=a.Name) 方法(注:ID为唯一时可用):
select * from #T a where ID in(select max(ID) from #T group by Name) --SQL2005: 方法:
select ID,Name,Memo from (select *,max(ID)over(partition by Name) as MinID from #T a)T where ID=MinID 方法:
select ID,Name,Memo from (select *,row_number()over(partition by Name order by ID desc) as MinID from #T a)T where MinID=
删除重复记录有大小关系时,保留大或小其中一个记录
--I、Name相同ID最小的记录,保留最小一条
方法:
delete a from #T a where exists(select from #T where Name=a.Name and ID<a.ID) 方法:
delete a from #T a left join (select min(ID)ID,Name from #T group by Name) b on a.Name=b.Name and a.ID=b.ID where b.Id is null 方法:
delete a from #T a where ID not in (select min(ID) from #T where Name=a.Name) 方法(注:ID为唯一时可用):
delete a from #T a where ID not in(select min(ID)from #T group by Name) 方法:
delete a from #T a where (select count() from #T where Name=a.Name and ID<a.ID)> 方法:
delete a from #T a where ID<>(select top ID from #T where Name=a.name order by ID) 方法:
delete a from #T a where ID>any(select ID from #T where Name=a.Name)
--II、Name相同ID保留最大的一条记录: 方法:
delete a from #T a where exists(select from #T where Name=a.Name and ID>a.ID) 方法:
delete a from #T a left join (select max(ID)ID,Name from #T group by Name) b on a.Name=b.Name and a.ID=b.ID where b.Id is null 方法:
delete a from #T a where ID not in (select max(ID) from #T where Name=a.Name) 方法(注:ID为唯一时可用):
delete a from #T a where ID not in(select max(ID)from #T group by Name) 方法:
delete a from #T a where (select count() from #T where Name=a.Name and ID>a.ID)> 方法:
delete a from #T a where ID<>(select top ID from #T where Name=a.name order by ID desc) 方法:
delete a from #T a where ID<any(select ID from #T where Name=a.Name)
--、删除重复记录没有大小关系时,处理重复值
方法:
if object_id('Tempdb..#') is not null
drop table #
Select distinct * into # from #T--排除重复记录结果集生成临时表# truncate table #T--清空表 insert #T select * from # --把临时表#插入到表#T中 --查看结果
select * from #T --重新执行测试数据后用方法
方法: alter table #T add ID int identity--新增标识列
go
delete a from #T a where exists(select from #T where Num=a.Num and Name=a.Name and ID>a.ID)--只保留一条记录
go
alter table #T drop column ID--删除标识列 --查看结果
select * from #T
SQL操作语句之查询及删除重复记录的方法的更多相关文章
- MySQL查询及删除重复记录的方法
查询及删除重复记录的方法(一)1.查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select p ...
- MySQL中查询、删除重复记录的方法大全
查找所有重复标题的记录: select title,count(*) as count from user_table group by title having count>1; SELECT ...
- [SQL]查询及删除重复记录的SQL语句
一:查询及删除重复记录的SQL语句1.查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select ...
- Oracle 查询并删除重复记录的SQL语句
查询及删除重复记录的SQL语句 1.查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select ...
- oracle 查询及删除重复记录的SQL语句
查询及删除重复记录的SQL语句 1.查找表中多余的重复记录,重复记录是根据单个字段(Id)来判断 select * from 表 where Id in (select Id from 表 group ...
- oracle_SQL 实验查询及删除重复记录 依据条件 (row)
除数据库表中的重复记录 根据条件 ① 创建表准备数据 创建表 tab_test -- Create table create table TAB_TEST ( ID NUMBER, NAME NVAR ...
- 【SQL】通过rowid查找及删除重复记录
新建T表如下: SQL> select * from t; X Y ---------- -- 1 a 1 a 1 a 2 ...
- MySQL删除重复记录的方法
参考网上的方法,总结了产出重复记录的方法,欢迎交流. 参考:http://www.cnblogs.com/nzbbody/p/4470638.html 方法1:创建一个新表临时储存数据 假设我们有一个 ...
- 查询及删除重复记录的SQL语句
1.查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断 select * from people where peopleId in (select peopleId from ...
随机推荐
- insert失败自动执行update(duplicate先insert)
例如:有一张表 字段有 id主键自增,或者唯一索引:datetime时间 name名字 INSERT INTO TABLE (id,datetime) VALUES (1,1440000000), ...
- iOS \U6b3e转字符串
-(NSString *)replaceUnicode:(NSString *)unicodeStr { NSString *tempStr1 = [unicodeStr stringByReplac ...
- HDU 3473 Minimum Sum(划分树)
Minimum Sum Time Limit: 16000/8000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Tota ...
- sql 查询慢的48个原因分析
sql 查询慢的48个原因分析. server memory 服务器配置选项配置为物理内存的 1.5 倍(虚拟内存大小设置的一半). 字句同时执行,SQL SERVER根据系统的负载情况决定最优的 ...
- Git系列三之GitHub使用方法
GitHub 是一个面向开源及私有软件项目的托管平台,因为只支持 Git 作为唯一的版本库格式进行托管,故名 GitHub. GitHub 于 2008 年 4 月 10 日正式上线,除了 Git 代 ...
- Dev之ribbon设置
- 【转】go语言的字节序
原文:http://lihaoquan.me/2016/11/5/golang-byteorder.html 这个人的博客写的不错,品质也比较高. 我应该也要有这种精神,这种态度.深入到计算机的世界中 ...
- OpenGL(八)使用 subroutine 切换可编程管线
Subroutine 功能是在OpenGL 4.0 版本号里才添加的.因此对于各种Android手机.这个功能基本跪了.假设你发现你的程序报错:ARB_shader_subroutine.那就说明当前 ...
- 使div变成半透明的css样式
.layer { opacity:0.9; filter:alpha(opacity=90); zoom:1; }
- vue - webpack.dev.conf.js for merge
webpack-merge提供了一个merge连接数组并合并创建新对象的对象的函数.如果遇到函数,它将执行它们,通过算法运行结果,然后再次将返回的值包装在函数中. 这种行为在配置webpack时特别有 ...