current_catalog

返回当前数据库名称的函数

current_catalog 是一个返回当前数据库名称的系统函数。

current_catalogPostgreSQL 8.4 中添加。

用法

current_catalog → name

current_catalog 作为 current_database() 的 SQL 标准等效项提供。

更改历史记录

示例

current_catalog 的用法示例

postgres=# SELECT current_catalog;
 current_catalog
-----------------
 postgres
(1 row)

postgres=# \c template1
You are now connected to database "template1" as user "postgres".

template1=# SELECT current_catalog;
 current_catalog
-----------------
 template1
(1 row)

分类

系统函数

另请参阅

current_database()current_schema

反馈

提交任何关于 "current_catalog" 的评论、建议或更正 在此