列出postgresql information_schema中的所有表

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

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

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

您还可以添加where table_schema = 'information_schema'来查看信息模式中的表格。

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

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

它只会列出您创build的表格。

 \dt information_schema. 

从psql中,应该没问题。

“\ z”COMMAND也是在交互式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) 

你也可以使用

 select * from pg_tables where schemaname = 'information_schema' 

在通用的pg *表中,您可以看到数据库中的所有内容,而不受限于您的权限(如果您有权访问表)。

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

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

没有table_type = 'BASE TABLE' ,你会列出表格和视图