授予在PostgreSQL中创建用户权限

时间:2012-10-02 19:52:56

标签: postgresql role grant createuser

我需要创建一个用户才能创建其他用户,但是,我不知道如何为此创建一个授权? 存在一种方法,或者我需要使用GRANT ALL PRIVILEGES

1 个答案:

答案 0 :(得分:1)

您可以在此处找到可用的权限:http://www.postgresql.org/docs/9.1/static/sql-createuser.html

我相信您要找的是CREATEUSER

您要执行的完整命令是:

CREATE USER username WITH CREATEUSER;