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 ...
随机推荐
- 使用Git代替FTP进行虚拟主机的代码管理
为什么要使用Git代替FTP的原因: 由于本人菜鸟+穷屌,玩不起VPS和其他大牌的云主机,所以呢就只能在景安(这不是广告..)申请了免费的虚拟主机,就想着自己玩玩而已,免费的嘛,空间流量什么的就不讨论 ...
- linux下activityMQ安装
>下载 到ActiveMQ官网,找到下载点. 目前, 官网为http://activemq.apache.org/ >启动 下载到本机,并解压 wget http://apache.f ...
- nodejs调试利器:supervisor
测试多了,是不是感觉每次要重新node一次app.js,很烦恼? 用supervisor,只有有改动,页面刷新就可以看到效果,不用重启node.js 安装: npm -g install superv ...
- 回顾苹果操作系统Mac OS的发展历史
在新的MacBook AIR和Mac OS X Lion即将发布之际,我们仅以此文向伟大的苹果和乔布斯致敬.并祝Apple教主乔布斯早日康复,长命百岁,千秋万载,一统苹果! Mac OS是指运行于苹果 ...
- rootkit后门之安装流程
1.首先是获得远程服务器的root权限 2.然后下载rootkit程序,本文用到的是mafix (下载前最好把杀毒软件关掉,基本上会报毒的!) 3.开始安装 tar -xvzf mafix.tar.g ...
- zend 环境
js智能提示: 安装APTANA组件,最新3.0版本 安装地址:http://download.aptana.com/studio3/plugin/install Aptana 3 不能装 2 的 J ...
- 使用node中的express解决vue-cli加载不到dev-server.js的问题
在使用vue开发过程中,难免需要去本地数据地址进行请求,而原版配置在dev-server.js中,新版vue-webpack-template已经删除dev-server.js,改用webpack.d ...
- utf8汉字编码16进制对照(转载)
utf8汉字编码16进制对照 GB Unicode UTF-8 Chinese CharacterCode code# Code (coded in UTF-8)D2BB 4E00 E4 B8 80 ...
- sqlmap dvwa SQL Injection使用小记
刚刚开始学习sql injection,初步使用sqlmap,使用 GET http://www.dvssc.com/dvwa/vulnerabilities/sqli/?id=1&Submi ...
- 一个故事讲清NIO
假设某银行只有10个职员.该银行的业务流程分为以下4个步骤: 1) 顾客填申请表(5分钟): 2) 职员审核(1分钟): 3) 职员叫保安去金库取钱(3分钟): 4) 职员打印票据,并将钱和票据返回给 ...