标签: postgresql
my_db中有2个方案。我需要在scheme_one中显示所有表的名称。怎么做?
my_db
scheme_one
答案 0 :(得分:2)
您可以使用PostgreSQL的information schema,如下所示:
select table_name from information_schema.tables where table_schema = 'scheme_one';