小编典典

列出postgresql information_schema中的所有表

all

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

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


阅读 70

收藏
2022-05-24

共1个答案

小编典典

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

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

2022-05-24