6.3. 例子

下面的命令集将创建名为 test_table的表. 表中包含 colacolb 两个字段, 类型分别是int4text,并且向该表插入两行.

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