List all tables in postgresql information_schema
在PostgreSQL的information_schema中列出所有表的最佳方法是什么?
澄清:我正在使用一个空数据库(我没有添加任何自己的表),但我希望看到information_schema结构中的每个表。
您应该能够运行
您还可以添加
要列出您的表,请使用:
1 | SELECT TABLE_NAME FROM information_schema.tables WHERE table_schema='public' |
它只会列出您创建的表。
1 | \dt information_schema. |
从psql内部,应该没问题。
" z"命令也是在交互式psql会话中列出表的好方法。
例如。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # 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 | SELECT * FROM pg_tables WHERE schemaname = 'information_schema' |
通常,pg *表允许您查看数据库中的所有内容,而不是限制您的权限(如果您当然可以访问表)。
对于postgresql中的私有模式
1 2 | SELECT TABLE_NAME FROM information_schema.tables WHERE table_schema = 'xxx' AND table_type = 'BASE TABLE' |
如果没有
1.getgetinfo_schema.tables中的所有表和视图,包括information_schema和pg_catalog。
1 | SELECT * FROM information_schema.tables |
2.get表和视图属于某种模式
1 2 | SELECT * FROM information_schema.tables WHERE table_schema NOT IN ('information_schema', 'pg_catalog') |
3.仅限表格(几乎 dt)
1 2 3 | SELECT * FROM information_schema.tables WHERE table_schema NOT IN ('information_schema', 'pg_catalog') AND table_type = 'BASE TABLE' |
如果你想要一个快速而肮脏的单行查询:
您可以直接在查询工具中运行它,而无需打开psql。
(其他帖子建议更好的更具体的information_schema查询,但作为一个新的,我发现这个单行查询帮助我掌握表格)