前端之家收集整理的这篇文章主要介绍了
postgresql – postgres查询以列出所有表名,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有任何
查询可用于列出我的Postgres DB中的所有表。
我试过一个查询像:
SELECT table_name FROM information_schema.tables
WHERE table_schema='public'
但此查询也返回视图。
我如何只获取表名称,而不是视图?
什么回合此
查询(基于
manual的描述)?
SELECT table_name
FROM information_schema.tables
WHERE table_schema='public'
AND table_type='BASE TABLE';
原文链接:https://www.f2er.com/postgresql/193827.html