是否有任何查询可用来列出我的Postgres数据库中的所有表。

我尝试了这样一个问题:

SELECT table_name FROM information_schema.tables
                      WHERE table_schema='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;

其他回答

这个查询(基于手册中的描述)怎么样?

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

如果你想要数据库列表

SELECT datname FROM pg_database WHERE datistemplate = false;

如果您想要所有数据库当前pg安装的表列表

SELECT table_schema,table_name FROM information_schema.tables
ORDER BY table_schema,table_name;

试试这个:

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

这个有用!

select 
 relname as table 
from 
 pg_stat_user_tables 
where schemaname = 'public'

如果track_activities被禁用,这将不起作用


select 
  tablename as table 
from 
  pg_tables  
where schemaname = 'public'

阅读更多关于pg_tables的信息

在psql中只给\dt怎么样?见https://www.postgresql.org/docs/current/static/app-psql.html。