标签: postgresql role grant createuser
我需要创建一个用户才能创建其他用户,但是,我不知道如何为此创建一个授权? 存在一种方法,或者我需要使用GRANT ALL PRIVILEGES?
GRANT ALL PRIVILEGES
答案 0 :(得分:1)
您可以在此处找到可用的权限:http://www.postgresql.org/docs/9.1/static/sql-createuser.html
我相信您要找的是CREATEUSER
CREATEUSER
您要执行的完整命令是:
CREATE USER username WITH CREATEUSER;