PostgreSQL数据库中的current_user和session_user

前端之家收集整理的这篇文章主要介绍了PostgreSQL数据库中的current_user和session_user前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
[postgres@pgserver ~]$ psql
psql (10beta2)
Type "help" for help.

postgres=# select current_user,session_user;
 current_user | session_user 
--------------+--------------
 postgres     | postgres
(1 row)

postgres=# set role to u_3;
SET
postgres=> select current_user,session_user;
 current_user | session_user 
--------------+--------------
 u_3          | postgres
(1 row)

postgres=> 

注意: 
current_user 是 the current user identifier 
session_user 是 the current session user identifier  ,注:我理解下来,就是启动该session的user。

参考自:
https://www.postgresql.org/docs/10/static/sql-set-role.html

猜你在找的Postgre SQL相关文章