SyedHamza
02/16/2022, 3:32 PMPreet Singh
02/16/2022, 3:47 PMSELECT DISTINCT table_catalog, table_schema, table_name, privilege_type
FROM information_schema.table_privileges
WHERE grantee = 'yourusername' AND privilege_type = 'SELECT'
Preet Singh
02/16/2022, 4:02 PMPreet Singh
02/16/2022, 4:27 PMKrzysztof Karski
02/17/2022, 2:25 AM