实操

PostgreSQL基础命令教程:创建新用户admin来访问PostgreSQL_数据库

postgres=# CREATE USER admin with password 'Dameng@7777';
CREATE ROLE
postgres=# grant all privileges on database postgres to admin;
GRANT

补充

PostgreSQL基础命令教程:创建新用户admin来访问PostgreSQL_数据库_02