PostgreSQL DBA(80) - Object Identifier Types

本节介绍了PostgreSQL的OID类型,官方文档的定义是:

Object identifiers (OIDs) are used internally by PostgreSQL as primary keys for various system tables. Type >oid repesents an object identifier.

OID定义为无符号整型数字,PG内置了转换函数从 regproc, regprocedure, regoper, regoperator, regclass, regtype, regrole, regnamespace, regconfig, and regdictionary 这些类型转换为OID.

TODO

下面是一些例子:
查询某张表的属性


[local]:5432 pg12@testdb=# SELECT * FROM pg_attribute
  WHERE attrelid = (SELECT oid FROM pg_class WHERE relname = 'tbl') limit 1;
-[ RECORD 1 ]-+---------
attrelid      | 32774
attname       | tableoid
atttypid      | 26
attstattarget | 0
attlen        | 4
attnum        | -6
attndims      | 0
attcacheoff   | -1
atttypmod     | -1
attbyval      | t
attstorage    | p
attalign      | i
attnotnull    | t
atthasdef     | f
atthasmissing | f
attidentity   | 
attgenerated  | 
attisdropped  | f
attislocal    | t
attinhcount   | 0
attcollation  | 0
attacl        | 
attoptions    | 
attfdwoptions | 
attmissingval | 
Time: 5.209 ms
-->
[local]:5432 pg12@testdb=# SELECT * FROM pg_attribute where attrelid = 'tbl'::regclass limit 1;
-[ RECORD 1 ]-+---------
attrelid      | 32774
attname       | tableoid
atttypid      | 26
attstattarget | 0
attlen        | 4
attnum        | -6
attndims      | 0
attcacheoff   | -1
atttypmod     | -1
attbyval      | t
attstorage    | p
attalign      | i
attnotnull    | t
atthasdef     | f
atthasmissing | f
attidentity   | 
attgenerated  | 
attisdropped  | f
attislocal    | t
attinhcount   | 0
attcollation  | 0
attacl        | 
attoptions    | 
attfdwoptions | 
attmissingval | 
Time: 1.205 ms

查询操作符+的相关信息


[local]:5432 pg12@testdb=# select * from pg_operator where oid='+(int,float)'::regoperator;
ERROR:  operator does not exist: +(int,float)
LINE 1: select * from pg_operator where oid='+(int,float)'::regopera...
                                            ^
Time: 1.502 ms
[local]:5432 pg12@testdb=# select * from pg_operator where oid='+(float,float)'::regoperator;
-[ RECORD 1 ]+---------
oid          | 591
oprname      | +
oprnamespace | 11
oprowner     | 10
oprkind      | b
oprcanmerge  | f
oprcanhash   | f
oprleft      | 701
oprright     | 701
oprresult    | 701
oprcom       | 591
oprnegate    | 0
oprcode      | float8pl
oprrest      | -
oprjoin      | -
Time: 3.446 ms

注意:操作符需指定参数.

参考资料
Object Identifier Types

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/6906/viewspace-2653813/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/6906/viewspace-2653813/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值