PostgreSQLポータルサイト <Let's Postgres> http://lets.postgresql.jp/
入門から運用、チューニングノウハウ、新機能の解説など、幅広い内容の技術解説記事をお読みいただけます。

53.4. 例

次の一連のコマンドはそれぞれint4型とtext型の2つの列、colacolbを持ち、OID 420 が付いたtest_tableテーブルを作成します。

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