oracle rowid在表行中的物理标识
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 当然最常用的是用rowid去除重复: 查出重复数据: select a.rowid,a.* from 表名 a where a.rowid != ( select max(b.rowid) from 表名 b where a.字段1 = b.字段1 and a.字段2 = b.字段2 ) 删
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入
当然最常用的是用rowid去除重复:
查出重复数据:
select a.rowid,a.* from 表名 a
where a.rowid !=
(
select max(b.rowid) from 表名 b
where a.字段1 = b.字段1 and
a.字段2 = b.字段2
)
删除重复数据:
delete from 表名 a
where a.rowid !=
(
select max(b.rowid) from 表名 b
where a.字段1 = b.字段1 and
a.字段2 = b.字段2
)
对于整行都重复的那么,可以使用distinct函数。
以下介绍下postgresql的ctid
testuser=# select ctid,* from t1 limit 1;
ctid | a
-------+-----------
(0,1) | 100000000
和oracle rowid类似也是一个物理字段,自动生成,不过结构和oracle rowid不一样,可以看到是(blockid,itemid)
ctid在数据更改后也会变化。
利用ctid去除重复数据:
建立测试表,插入数据:
testuser=# create table t2 (id int,name varchar(20));
CREATE TABLE
testuser=# insert into t2 values (1,'apple');
INSERT 0 1
testuser=# insert into t2 values (1,'apple');
INSERT 0 1
testuser=# insert into t2 values (1,'apple');
INSERT 0 1
testuser=# insert into t2 values (2,'orange');
INSERT 0 1
testuser=# insert into t2 values (2,'orange');
INSERT 0 1
testuser=# insert into t2 values (2,'orange');
INSERT 0 1
testuser=# insert into t2 values (2,'orange');
INSERT 0 1
testuser=# insert into t2 values (3,'banana');
INSERT 0 1
testuser=# insert into t2 values (3,'banana');
INSERT 0 1
testuser=# select * from t2;
id | name
----+--------
1 | apple
1 | apple
1 | apple
2 | orange
2 | orange
2 | orange
2 | orange
3 | banana
3 | banana
查询重复的数据:
testuser=# select ctid,* from t2 where ctid in (select min(ctid) from t2 group by id);
ctid | id | name
-------+----+--------
(0,1) | 1 | apple
(0,4) | 2 | orange
(0,8) | 3 | banana
删除重复数据并查看结果:
testuser=# delete from t2 where ctid not in (select min(ctid) from t2 group by id);
DELETE 6
testuser=# select * from t2;
id | name
----+--------
1 | apple
2 | orange
3 | banana
(3 rows)
[1] [2]
推荐阅读
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
在Oracle的函数中,返回表类型的语句
-
Oracle中在pl/sql developer修改表的2种方法
-
ORA-30926: 无法在源表中获得一组稳定的行
-
dual表在oracle,mysql和hive中的使用实例
-
如何完全卸载oracle和删除oracle在注册表中的注册信息
-
在Oracle数据库中同时更新两张表的简单方法
-
Oracle Copy命令中SQL*Plus的Copy命令操作(在不同的表(同一服务
-
Oracle Copy命令中SQL*Plus的Copy命令操作(在不同的表(同一服务
-
在oracle 数据库查询的select 查询字段中关联其他表的方法