Postgres 未列出运算符和函数

问题描述 投票:0回答:1

使用

\do
\df
命令列出运算符和函数。但它返回一个空表。我做错了什么?

bpsimple=> \do
                             List of operators
 Schema | Name | Left arg type | Right arg type | Result type | Description 
--------+------+---------------+----------------+-------------+-------------
(0 rows)

bpsimple=> 
bpsimple=> \df
                       List of functions
 Schema | Name | Result data type | Argument data types | Type 
--------+------+------------------+---------------------+------
(0 rows)

bpsimple=> 
bpsimple=> 

postgresql psql
1个回答
0
投票

要查看系统功能和操作符,请使用

\dfS
\doS

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.