PostgreSQL常用函数

2018-06-17 19:55:47来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1.系统信息函数

    1.会话信息函数

edbstore=# select current_catalog;     #查询当前数据库名称
 current_database 
------------------
 edbstore
(1 row)

edbstore=# select current_database();  #查询当前数据库名称
 current_database 
------------------
 edbstore
(1 row)

edbstore=# select current_schema();   #查询当前数据库密码
 current_schema 
----------------
 edbstore
(1 row)

edbstore=# select current_user;      #查询当前连接的用户
 current_user 
--------------
 dbadmin
(1 row)

edbstore=# select inet_client_addr();   #查询当前客户端的IP地址
 inet_client_addr 
------------------
 172.16.101.66
(1 row)

edbstore=# select inet_client_port()    #查询当前客户端的端口号
edbstore-# ;
 inet_client_port 
------------------
            23047
(1 row)
edbstore=# select pg_backend_pid();     #查看与当前会话相关联的服务器进程ID
 pg_backend_pid 
----------------
          24773
(1 row)

edbstore=# select pg_conf_load_time();     #查看配置文件最后一次载入时间
       pg_conf_load_time       
-------------------------------
 2017-05-23 15:07:09.224327+08
(1 row)

edbstore=# select pg_postmaster_start_time();     #查看数据库启动时间
   pg_postmaster_start_time   
------------------------------
 2017-05-23 15:07:09.48386+08
(1 row)

edbstore=# select session_user;     
 session_user 
--------------
 dbadmin
(1 row)

 

 

    

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:使用SQL语句使数据从坚向排列转化成横向排列(排班表)

下一篇:MariaDB