列出 PostgreSQL 的 information_schema 中所有表的最佳方法是什么?
澄清一下:我正在使用一个空数据库(我没有添加我自己的任何表),但我想查看 information_schema 结构中的每个表。
您应该能够运行select * from information_schema.tables以获取 Postgres 为特定数据库管理的每个表的列表。
select * from information_schema.tables
您还可以添加一个where table_schema = 'information_schema'以仅查看信息架构中的表。
where table_schema = 'information_schema'