Answers for "grant all permissions to a role postgres"

SQL
0

list all permissions on a table in postgres

SELECT grantee, privilege_type 
FROM information_schema.role_table_grants 
WHERE table_name='mytable'
Posted by: Guest on April-06-2020
1

grant permission in postgres

GRANT ALL PRIVILEGES ON DATABASE db_name TO username;
Posted by: Guest on October-31-2021

Code answers related to "grant all permissions to a role postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language