PostgreSQL 数据库国内的资料真的是少,最近想查询一下其相关用户的数据库权限时,网上给的答案都是答非所问啊。很着急,下面总结一下权限相关的语句,以备以后使用。
查看某用户的表权限
select * from information_schema.table_privileges where grantee='xttblog';
查看usage权限表
select * from information_schema.usage_privileges where grantee='xttblog';
查看存储过程函数相关权限表
select * from information_schema.routine_privileges where grantee='xttblog';
建用户授权
create user xttblog; alter user xttblog with password ''; alter user xttblog with CONNECTION LIMIT 20;#连接数限制
以上是比较常用的权限相关的sql。
: » PostgreSQL数据库查看用户权限
原创文章,作者:506227337,如若转载,请注明出处:https://blog.ytso.com/252371.html