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

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