Answers for "postgres user grant role"

C
1

postgresql change user role grant

=# ALTER USER librarian WITH SUPERUSER;
ALTER ROLE
Posted by: Guest on July-22-2020
0

how to add user to role postgresql

CREATE ROLE joe LOGIN INHERIT;
CREATE ROLE admin NOINHERIT;
CREATE ROLE wheel NOINHERIT;
GRANT admin TO joe;
GRANT wheel TO admin;
Posted by: Guest on January-27-2021

Code answers related to "postgres user grant role"

Code answers related to "C"

Browse Popular Code Answers by Language