Redrock Postgres 搜索 英文
版本: 9.3 / 9.4 / 9.5 / 9.6 / 10 / 11 / 12 / 13 / 14 / 15 / 16

75.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