Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1324620
  • 博文数量: 185
  • 博客积分: 50
  • 博客等级: 民兵
  • 技术积分: 3934
  • 用 户 组: 普通用户
  • 注册时间: 2007-09-11 13:11
个人简介

iihero@ChinaUnix, ehero.[iihero] 数据库技术的痴迷爱好者. 您可以通过iihero AT qq.com联系到我 以下是我的三本图书: Sybase ASE in Action, Oracle Spatial及OCI高级编程, Java2网络协议内幕

文章分类

全部博文(185)

文章存档

2014年(4)

2013年(181)

分类: Oracle

2013-07-22 14:08:37

本文为iihero原创,如若转载,请注明出处。谢谢。

 

为简化问题:

设表:t(id int, col2 varchar(32))

 

1. ASE:

 

选出重复的行:
select * from t group by id, col2 having count(*)>1

删掉重复的行,
alter table t add col3 int identity not null;
delete from t where col3 not in (select max(col3) from t group by id, col2);
alter table t drop col3;  (前提select into/bulkcopy on数据库上的options)

 

2. ASA: (设表t123)

 

select * from t123

id,col2
1,'a'
1,'a'
2,'b'
3,'c'
delete from t123 where col3 not in (select max(col3) from t123 group by id, col2);
alter table t123 drop col3;

 

上述方法对ASE和ASA基本上是一样的。除了ASE中要求目标数据库select into为ON

 

3. ORACLE:

大概有两种方法:

方法1:基于rowid

delete from t a
where a.rowid !=
(
select max(b.rowid) from t b
where a.id = b.id and
a.col2 = b.col2
)

[c-sharp]
  1. SQL> select * from t;  
  2.         ID COL2  
  3. ---------- --------------------------------  
  4.          1 a  
  5.          1 a  
  6.          2 b  
  7.          3 c  
  8. SQL> delete from t a where a.rowid != (select max(b.rowid) from t b where a.id=b.id and a.col2 = b.col2);  
  9. 已删除 1 行。  
  10. SQL> select * from t;  
  11.         ID COL2  
  12. ---------- --------------------------------  
  13.          1 a  
  14.          2 b  
  15.          3 c  
SQL> select * from t; ID COL2 ---------- -------------------------------- 1 a 1 a 2 b 3 c SQL> delete from t a where a.rowid != (select max(b.rowid) from t b where a.id=b.id and a.col2 = b.col2); 已删除 1 行。 SQL> select * from t; ID COL2 ---------- -------------------------------- 1 a 2 b 3 c


 

 

方法2:使用临时表

[c-sharp]
  1. SQL> select * from t;  
  2.         ID COL2  
  3. ---------- --------------------------------  
  4.          1 a  
  5.          2 b  
  6.          3 c  
  7. SQL> insert into t values(1, 'a');  
  8. 已创建 1 行。  
  9. SQL> create table tt as select t.id, t.col2, max(t.rowid) dataid from t group by t.id, t.col2;  
  10. 表已创建。  
  11. SQL> delete from t a where a.rowid != (select b.dataid from tt b where a.id=b.id and a.col2=b.col2);  
  12. 已删除 1 行。  
  13. SQL> select * from t;  
  14.         ID COL2  
  15. ---------- --------------------------------  
  16.          2 b  
  17.          3 c  
  18.          1 a  
SQL> select * from t; ID COL2 ---------- -------------------------------- 1 a 2 b 3 c SQL> insert into t values(1, 'a'); 已创建 1 行。 SQL> create table tt as select t.id, t.col2, max(t.rowid) dataid from t group by t.id, t.col2; 表已创建。 SQL> delete from t a where a.rowid != (select b.dataid from tt b where a.id=b.id and a.col2=b.col2); 已删除 1 行。 SQL> select * from t; ID COL2 ---------- -------------------------------- 2 b 3 c 1 a


 

相信ASE/ASA也可以使用临时表的方案。(表特别大的时候,也许很有用)

 

至于MySQL/DB2当中的方法,应该是很类似的。不再赘述。

阅读(1190) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~