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

69.6. BKI例子

下面的命令序列将创建test_table表,表的OID为420,它有三列oidcolacolb,类型分别为oidint4text,然后向该表插入两行:

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