| PostgreSQL 8.0.0 中文文件(轉譯自 PostgreSQL 中國 製作的簡體中文版本) | ||||
|---|---|---|---|---|
| Prev | Fast Backward | Chapter 50. 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