Answers for "list all roles in 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

postgres list all roles

# psql command 
du
Posted by: Guest on July-20-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language