下列命令序列会创建一个 OID 为 420 的 test_table 表,该表有三列:oid、cola 和 colb,它们的类型分别是 oid、int4 和 text;然后再向该表插入两行数据:
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