SyntaxFix
Write A Post
Hire A Developer
Questions
You could query the table_privileges table in the information schema:
table_privileges
SELECT table_catalog, table_schema, table_name, privilege_type FROM information_schema.table_privileges WHERE grantee = 'MY_USER'