Answers:
您应该能够运行select * from information_schema.tables
以获取由Postgres管理的特定数据库的每个表的列表。
您还可以添加一个where table_schema = 'information_schema'
以仅查看信息模式中的表。
要列出您的表,请使用:
SELECT table_name FROM information_schema.tables WHERE table_schema='public'
它只会列出您创建的表。
\dt information_schema.
从psql内部,应该没问题。
在交互式psql会话中时,“ \ z”命令也是列出表的好方法。
例如。
# 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)
1.从information_schema.tables中获取所有表和视图,包括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'
where table_schema not in ('information_schema', 'pg_catalog')
是为了什么?
如果您想要快速而肮脏的单行查询:
select * from information_schema.tables
您可以直接在查询工具中运行它,而不必打开psql。
(其他帖子建议使用更具体的information_schema查询,但作为一个新手,我发现此单行查询可帮助我掌握表格)