当我从命令行(以postgres用户身份)运行以下查询时,没有返回任何行。但是,当我从pgAdmin运行它时,我得到了15行。我想念什么?我还尝试将该数据库的所有特权授予其他用户,但仍然没有返回任何行。
SELECT
table_name as name
FROM
information_schema.tables
WHERE
table_type='BASE TABLE'
and table_schema='public'
and table_catalog='dvdrental'
ORDER BY
table_name