一尘不染

列出postgresql中的所有表information_schema

sql

在PostgreSQL的information_schema中列出所有表的最佳方法是什么?

需要说明的是:我正在使用一个空的数据库(我没有添加任何自己的表),但是我想查看information_schema结构中的每个表。


阅读 156

收藏
2021-05-05

共1个答案

一尘不染

您应该能够运行select * from information_schema.tables以获取由Postgres管理的特定数据库的每个表的列表。

您还可以添加一个where table_schema = 'information_schema'以仅查看信息模式中的表。

2021-05-05