postgresql grant permissions on table code example
Example 1: list all permissions on a table in postgres
SELECT grantee, privilege_type
FROM information_schema.role_table_grants
WHERE table_name='mytable'
Example 2: postgresql grant all privileges on database
GRANT ALL PRIVILEGES ON dbname TO username;