「PostgreSQL」create roleでロールを作成する

構文
create role ロール名 with option
option:superuser、login、admin等

使用例
1.ロールを作成
postgres=# create role cft with login password 'cftpwd’;
CREATE ROLE

2.ロール一覧を表示
postgres=# \du

3.PostgreSQLへ接続
>psql -U cft -d データベース名
ユーザ cft のパスワード:cftpwd

PostgreSQL

Posted by arkgame