Answers for "how to add user to role postgresql"

C
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
0

how to add user to role postgresql

GRANT group_role TO role1, ... ;
REVOKE group_role FROM role1, ... ;
Posted by: Guest on January-27-2021
0

postgresql create user roles

CREATE ROLE admin WITH CREATEDB CREATEROLE;
Posted by: Guest on July-22-2020

Code answers related to "how to add user to role postgresql"

Code answers related to "C"

Browse Popular Code Answers by Language