求一个删除ms sql server2k中某表重复记录的存贮过程

snowrain 2003-04-29 07:07:46
求一个删除ms sql server2k中某表重复记录的存贮过程

求一个删除ms sql server2k中某表重复记录的存贮过程
比如某表table1有三个字段a,b,c(均为varchar型)
该表没有索引与主键,有些某些原因,表中会出现a,b,c完全相同的重复记录,而这些重复记录需要被删掉(当然每个记录要保留一条,只删去多余的)现在需要一个存贮过程来实现这个目的。

请各位朋友指教!

BTW:我知道可以使用select distinct into一个临时表,再复制回来的方法,不知道还有什么比较简单的方法
(能否用一两句复合sql语句实现这个功能?)
...全文
26 7 打赏 收藏 转发到动态 举报
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
wj81112 2003-05-02
  • 打赏
  • 举报
回复
学习!
ggwb002 2003-04-30
  • 打赏
  • 举报
回复
ok
dawnming 2003-04-30
  • 打赏
  • 举报
回复
学习
CrazyFor 2003-04-30
  • 打赏
  • 举报
回复
如果有ID字段,就是具有唯一性的字段

delect table where id not in (

select max(id) from table group by col1,col2,col3...
)
group by 子句后跟的字段就是你用来判断重复的条件,如只有col1,那么只要col1字段内容相同即表示记录相同。



2,如果是判断所有字段也可以这样
select * into #aa from table group by id1,id2,....
delete table
insert into table
select * from #aa



3,没有ID的情况

select identity(int,1,1) as id,* into #temp from tabel
delect # where id not in (
select max(id) from # group by col1,col2,col3...)
delect table
inset into table(...)
select ..... from #temp


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字段内容相同即表示记录相同。

2,
select identity(int,1,1) as id,* into #temp from tabel
select * from #temp where id in (
select max(id) from #emp where having count(*)>1 group by col1,col2,col3...)
happydreamer 2003-04-29
  • 打赏
  • 举报
回复

删除重复数据

一、具有主键的情况
a.具有唯一性的字段id(为唯一主键)
delect 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字段内容相同即表示记录相同。


or
select * from table where exists (select 1 from table x where table.col1 = x.col1 and
table.col2= x.col2 group by x.col1,x.col2 having count(*) >1)

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
delect #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




pengdali 2003-04-29
  • 打赏
  • 举报
回复
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

或:

select distinct * into #temp from 表
truncate table 表
insert 表 select * from #temp
drop table #temp
hooboo 2003-04-29
  • 打赏
  • 举报
回复
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

34,593

社区成员

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

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