受支持版本: 当前版本 (18) / 17 / 16 / 15 / 14
开发版本: 19 / devel
此文档适用于不受支持的 PostgreSQL 版本。
您可能需要查看当前版本的相同页面,或上面列出的其他受支持版本。

68.6. BKI 示例 #

下列命令序列会创建一个 OID 为 420 的 test_table 表,该表有三列:oidcolacolb,它们的类型分别是 oidint4text;然后再向该表插入两行数据:

create test_table 420 (oid = oid, cola = int4, colb = text)
open test_table
insert ( 421 1 'value 1' )
insert ( 422 2 _null_ )
close test_table