current_schema()
是一个系统函数,返回当前模式的名称。
current_schema()
在 PostgreSQL 7.3 中添加。
示例
current_schema()
的执行
postgres=# SELECT current_schema(); current_schema ---------------- public (1 row) postgres=# SET search_path TO pg_catalog; SET postgres=# SELECT current_schema(); current_schema ---------------- pg_catalog (1 row)
参考文献
- PostgreSQL 文档: 系统信息函数和运算符