データベースのリストを表示する

psql -l

テストデータベースの作成

> createdb test

接続

> psql test

テーブルの作成

test=# create table test (shainno int,shimei text);

テーブルの確認

test=# \d
    List of relations
 Name | Type  |  Owner
------+-------+----------
 test | table | postgres
(1 row)

test=#

現在のアクセス:14358


トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS