「PostgreSQL」create schemaでスキーマを作成する

構文
CREATE SCHEMA スキーマ名

使用例
1.現在のスキーマを確認
>psql -U postgres
ユーザ postgres のパスワード:
psql (9.6.5)
“help" でヘルプを表示します.

postgres=# \dn
スキーマ一覧
名前 | 所有者
——–+———-
public | postgres
(1 行)

2.スキーマを作成
postgres=# create schema testcft;
CREATE SCHEMA

3.スキーマの確認
postgres=# \dn
スキーマ一覧
名前 | 所有者
———+———-
public | postgres
testcft | postgres
(2 行)

PostgreSQL

Posted by arkgame