当前位置:Gxlcms > 数据库问题 > PostgreSQL查看当前用户

PostgreSQL查看当前用户

时间:2021-07-01 10:21:17 帮助过:66人阅读

 

select * from current_user;

 

eg: 

kerrydb=> select * from current_user;
 current_user 
--------------
 test
(1 row)

 

方法2

 

select user;

 

eg

kerrydb=> select user;
 user 
------
 test
(1 row)
 
kerrydb=> 

 

 

方法3

 

\c

 

eg

kerrydb=> \c
You are now connected to database "kerrydb" as user "test".

 

此方法只使用与psql命令。

 

方法4

 

\conninfo

 

eg

postgres=# \conninfo
You are connected to database "postgres" as user "postgres" on host "127.0.0.1" at port "5432".

 

方法5

 

 

current_userthe current user identifier

session_userthe current session user identifier

 

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

PostgreSQL查看当前用户

标签:row   man   time   connect   from   family   theme   pad   wrapper   

人气教程排行