| PostgreSQL 7.4 文檔 | ||||
|---|---|---|---|---|
| Prev | Fast Backward | Chapter 52. BKI 後端接口 | Fast Forward | Next |
下面的命令集將創建名為 test_table的表。 表中包含 cola 和 colb 兩個字段, 類型分別是int4 和 text,並且向該表插入兩行。
create test_table (cola = int4, colb = text) open test_table insert OID=421 ( 1 "value1" ) insert OID=422 ( 2 _null_ ) close test_table