Appearance
以下命令序列将创建 OID 为 420 的表test_table,其中包含三个列oid、cola和colb,类型分别为oid、int4和text,并在表中插入两行
test_table
oid
cola
colb
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