如何在db中显示两个方案时显示PostgreSql中的所有表?

时间:2012-04-20 00:58:28

标签: postgresql

my_db中有2个方案。我需要在scheme_one中显示所有表的名称。怎么做?

1 个答案:

答案 0 :(得分:2)

您可以使用PostgreSQL的information schema,如下所示:

select table_name from information_schema.tables where table_schema = 'scheme_one';