If I create a user in a group, like:
create role user_1 login inherit in role group_1;
later, with which query could I retrieve to which group(s) a user belongs to ?
Thanks !
|
later, with which query could I retrieve to which group(s) a user belongs to ? Thanks ! |
|||
|
|
|
Check pg_roles, pg_authid and pg_auth_members to get the details about roles. |
|||
|
|
|
Just to give a copy&pastable solution - On PostgreSQL 8.4 you can do:
where USERNAME is the name of the login role you are interested in. |
||||
|
|