--列出所有用户
select * from pg_user
--查询用户可以访问哪些表
select * from information_schema.role_table_grants where grantee='[用户名]';
--为用户授予访问表的权限
grant select on [表名] to [用户名]
--列出所有用户
select * from pg_user
--查询用户可以访问哪些表
select * from information_schema.role_table_grants where grantee='[用户名]';
--为用户授予访问表的权限
grant select on [表名] to [用户名]