存储优化 - 删除重复记录只保留单条
2010-03-24 00:00:00 来源:WEB开发网3. Oracle 里 rowid 也可看做默认标识列
在Oracle中,每一条记录都有一个rowid,rowid在整个数据库中是唯一的,rowid确定了每条记录是在Oracle中的哪一个数据文件、块、行上。
在重复的记录中,可能所有列的内容都相同,但rowid不会相同,所以只要确定出重复记录中那些具有最大rowid的就可以了,其余全部删除。
select * from test;
select * from test group by id having count(*)>1
select * from test group by id
select distinct * from test
delete from test a where a.rowid!=(select max(rowid) from test b where a.id=b.id);
扯远了,回到原来的问题,除了采用数据结构的思想来处理,因为数据库特有的事务处理,能够把数据缓存在线程池里,这样也相当于临时表的功能,所以,我们还可以用游标来解决删除重复记录的问题。
1 declare @max int,
2 @id int
3 declare cur_rows cursor local for select id ,count(*) from test group by id having count(*) > 1
4 open cur_rows
5 fetch cur_rows into @id ,@max
6 while @@fetch_status=0
7 begin
8 select @max = @max -1
9 set rowcount @max --让这个时候的行数等于少了一行的统计数
10 delete from test where id = @id
11 fetch cur_rows into @id ,@max
12 end
13 close cur_rows
14 set rowcount 0
以上是闪电查阅一些资料写出的想法,有考虑不周的地方,欢迎大家指出。
出处:http://levinlee.cnblogs.com/
更多精彩
赞助商链接