245

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

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

4

8 回答 8

334

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

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

于 2010-02-16T22:08:06.467 回答
140

要列出您的表格,请使用:

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

它只会列出您创建的表。

于 2012-08-30T13:52:14.380 回答
48
\dt information_schema.

从 psql 中,应该没问题。

于 2010-02-16T22:31:15.303 回答
17

" \z" 命令也是在交互式 psql 会话中列出表的好方法。

例如。

# psql -d mcdb -U admin -p 5555
mcdb=# /z
                           Access privileges for database "mcdb"
 Schema |              Name              |   Type   |           Access privileges
--------+--------------------------------+----------+---------------------------------------
 public | activities                     | table    |
 public | activities_id_seq              | sequence |
 public | activities_users_mapping       | table    |
[..]
 public | v_schedules_2                  | view     | {admin=arwdxt/admin,viewuser=r/admin}
 public | v_systems                      | view     |
 public | vapp_backups                   | table    |
 public | vm_client                      | table    |
 public | vm_datastore                   | table    |
 public | vmentity_hle_map               | table    |
(148 rows)
于 2014-07-07T06:25:27.283 回答
13

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

select * from information_schema.tables

2.get表和视图属于某个schema

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'
于 2019-01-21T01:34:21.773 回答
11

你也可以使用

select * from pg_tables where schemaname = 'information_schema'

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

于 2013-05-16T07:09:23.493 回答
10

'xxx'对于postgresql 中的私有模式:

SELECT table_name FROM information_schema.tables 
 WHERE table_schema = 'xxx' AND table_type = 'BASE TABLE'

如果没有table_type = 'BASE TABLE',您将列出表和视图

于 2014-03-01T17:43:40.293 回答
1

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

select * from information_schema.tables

可以直接在查询工具中运行,无需打开psql。

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

于 2018-02-07T11:46:56.247 回答