PostgreSQL current_role

PostgreSQL current_role 返回当前用户(当前执行上下文的用户)的名称。

current_rolecurrent_user() 等效。

current_role 语法

这里是 PostgreSQL current_role 的语法:

current_role -> name

参数

PostgreSQL current_role 无需任何参数。

返回值

PostgreSQL current_role 返回当前用户(当前执行上下文的用户)的名称。

current_role 示例

要获取当前执行上下文的用户,请使用下面带有 current_roleSELECT 语句:

SELECT current_role;
 current_role
--------------
 postgres