📜  列出 postgres 中表的所有权限 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:36.513000             🧑  作者: Mango

代码示例1
SELECT grantee, privilege_type 
FROM information_schema.role_table_grants 
WHERE table_name='mytable'