在国内,用过 PostgreSQL 的程序员不是很多。很多知识都需要一点一点的积累。本文分享一下关于 PostgreSQL 中查询当前用户的所有权限的用法。
如果想查询用户xttblog有哪些权限,可以查询系统表information_schema.role_table_grants:
select * from INFORMATION_SCHEMA.role_table_grants where grantee='xttblog';
参考资料
- http://www.postgresql.org/docs/9.2/static/sql-grant.html
: » PostgreSQL查询当前用户所拥有的权限
原创文章,作者:sunnyman218,如若转载,请注明出处:https://blog.ytso.com/252370.html