是否有任何查询可用来列出我的Postgres数据库中的所有表。
我尝试了这样一个问题:
SELECT table_name FROM information_schema.tables WHERE table_schema='public'
但是这个查询也返回视图。
我怎么能得到只有表名,只有,而不是视图?
那么这个查询(基于手册的描述)呢?
SELECT table_name FROM information_schema.tables WHERE table_schema='public' AND table_type='BASE TABLE';
打开postgres终端和你想要的数据库:
psql dbname (run this line in a terminal)
然后在postgres环境下执行该命令
\d
这将按名称描述所有表。基本上是一个按名称升序排列的表列表。
然后你可以尝试按字段描述一个表:
\d tablename.
希望这能有所帮助。
select relname as table from pg_stat_user_tables where schemaname = 'public'
select tablename as table from pg_tables where schemaname = 'public'
如果你想要数据库列表
SELECT datname FROM pg_database WHERE datistemplate = false;
如果您想要所有数据库当前pg安装的表列表
SELECT table_schema,table_name FROM information_schema.tables ORDER BY table_schema,table_name;
在psql中只给出\dt怎么样?看到https://www.postgresql.org/docs/current/static/app-psql.html。
psql
\dt
试试这个:
SELECT table_name FROM information_schema.tables WHERE table_schema='public' AND table_type='BASE TABLE'
这个有用!
SELECT table_name FROM information_schema.tables WHERE table_type='BASE TABLE' AND table_schema='public';
对于MySQL,你需要table_schema='dbName',对于MSSQL,删除这个条件。
注意,“只显示当前用户可以访问的那些表和视图”。此外,如果你可以访问多个数据库,并且想要将结果限制在某个数据库,你可以通过添加条件and table_catalog='yourDatabase'(在PostgreSQL中)来实现。
如果你也想摆脱显示行名的页眉和显示行数的页脚,你可以用命令行选项-t(——tuples-only的缩写)启动psql,或者你可以通过\t (\pset tuples_only的缩写)在psql的命令行中切换设置。这可能很有用,例如当使用\g[|命令]将输出输送到另一个命令时。