Answers for "psql view table permissions"

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

Code answers related to "SQL"

Browse Popular Code Answers by Language