下記の一連のコマンドはtest_tableを作成し、二つのカラム、 int4型のcolaとtext型のcolbを 作成し、二つの行にテーブルを挿入します。
create test_table (cola = int4, colb = text) open test_table insert OID=421 ( 1 "value1" ) insert OID=422 ( 2 _null_ ) close test_table