spesisik tek bir tabloya yetki -SELECT,INSERT,UPDATE,DELETE
Definition Description
SELECT 'GRANT ' || privilege_type || ' ON "' || table_schema || '"."' || TABLE_NAME || '" TO consentapp;', * FROM information_schema.role_table_grants WHERE table_schema = 'public' AND TABLE_NAME='Settings' AND (privilege_type = 'DELETE' OR privilege_type = 'INSERT' OR privilege_type = 'UPDATE' OR privilege_type = 'SELECT')