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

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


当前回答

列出你的表使用:

SELECT table_name FROM information_schema.tables WHERE table_schema='public'

它将只列出您创建的表。

其他回答

select * from information_schema.tables where table_schema = 'public' and table_type = 'BASE TABLE'

只订你们的桌子

列出你的表使用:

SELECT table_name FROM information_schema.tables WHERE table_schema='public'

它将只列出您创建的表。

你可以用also

select * from pg_tables where schemaname = 'information_schema'

一般来说,pg* tables允许您查看db中的所有内容,不受您的权限限制(当然,如果您有权限访问这些表)。

1.从information_schema中获取所有表和视图。表,包括information_schema和pg_catalog。

select * from information_schema.tables

2.获取属于特定模式的表和视图

select * from information_schema.tables
    where table_schema not in ('information_schema', 'pg_catalog')

3.只获取表(几乎\dt)

select * from information_schema.tables
    where table_schema not in ('information_schema', 'pg_catalog') and
    table_type = 'BASE TABLE'

如果你想要一个快速而肮脏的一行查询:

从information_schema.tables中选择*

您可以直接在查询工具中运行它,而不必打开psql。

(其他帖子建议更具体的information_schema查询,但作为一个新手,我发现这个一行查询可以帮助我掌握表格)