8. psqlの起動、テーブルの作成 |
8.1 psqlの起動
psql test |
Welcome to psql 7.3.1, the PostgreSQL interactive terminal. Type: \copyright for distribution terms \h for help with SQL commands \? for help on internal slash commands \g or terminate with semicolon to execute query \q to quit test=# |
上記のメッセージが表示されます。
8.2 テーブルの作成 create table
修正履歴
2004-02-05 tab1テーブルのnameとnote列の属性をchar(固定長文字列)としていましたがvarchar(可変長文字列)に修正しました。
次にテスト用のテーブルを作成します。
create table tab1 (number integer unique,name varchar(40) not null,note varchar(60)); |
NOTICE: CREATE TABLE / UNIQUE will create implicit index 'tab1_number_key' for table 'tab1' NOTICE: CREATE TABLE / UNIQUE will create implicit index 'tab1_number_key' for table 'tab1' CREATE TABLE |
上記のメッセージが表示されテーブル tab1が作成されます。
\d tab1; |
Table "public.tab1" Column | Type | Modifiers --------+-----------------------+----------- number | integer | name | character varying(40) | not null note | character varying(60) | Indexes: tab1_number_key unique btree (number) |
以上でtab表の作成は完了です。
WindowsでPostgreSQL 記事 一覧