求一个SQL,马上结贴。

luotitan 2004-09-14 05:15:33
应该很简单,自己也做过,就是想不起来了

表中的某一列(比如名称)出现记录重复,需要把重复的行挑选出来,并且将重复的行删掉(也就是保留唯一行)
...全文
74 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
luotitan 2004-09-14
  • 打赏
  • 举报
回复
谢谢大家
luotitan 2004-09-14
  • 打赏
  • 举报
回复
不是全重复
icedut 2004-09-14
  • 打赏
  • 举报
回复
转某位老大的
删除重复数据

一、具有主键的情况
a.具有唯一性的字段id(为唯一主键)
delete table
where id not in
(
select max(id) from table group by col1,col2,col3...
)
group by 子句后跟的字段就是你用来判断重复的条件,如只有col1,
那么只要col1字段内容相同即表示记录相同。

b.具有联合主键
假设col1+','+col2+','...col5 为联合主键
select * from table where col1+','+col2+','...col5 in (
select max(col1+','+col2+','...col5) from table
where having count(*)>1
group by col1,col2,col3,col4
)
group by 子句后跟的字段就是你用来判断重复的条件,
如只有col1,那么只要col1字段内容相同即表示记录相同。

c:判断所有的字段
select * into #aa from table group by id1,id2,....
delete table
insert into table
select * from #aa

二、没有主键的情况

a:用临时表实现
select identity(int,1,1) as id,* into #temp from ta
delete #temp
where id not in
(
select max(id) from # group by col1,col2,col3...
)
delete table ta
inset into ta(...)
select ..... from #temp

b:用改变表结构(加一个唯一字段)来实现
alter table 表 add newfield int identity(1,1)
delete 表
where newfield not in
(
select min(newfield) from 表 group by 除newfield外的所有字段
)

alter table 表 drop column newfield
lsxaa 2004-09-14
  • 打赏
  • 举报
回复
select * from t aa
where (select count(*) from t where 列名=aa.列名)>1
lsxaa 2004-09-14
  • 打赏
  • 举报
回复
选出重复行
select * from t aa where (select count(*) from t where 列名=aa.列名)>0
yesterday2000 2004-09-14
  • 打赏
  • 举报
回复
你想留那条记录?
如果全重可以用
select distinct * into #a from tb
group by col1,col2...
hvaing count (*)>1
delete tb
from tb a,#a b where a.col1=b.col1 and .....
insert into tb
select * from #a
drop table #a

34,576

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server相关内容讨论专区
社区管理员
  • 基础类社区
  • 二月十六
  • 卖水果的net
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧