Postgresql查询当前表的分区

Posted 没刮胡子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Postgresql查询当前表的分区相关的知识,希望对你有一定的参考价值。

pg查询

select  c.relname 
from pg_class c
join pg_inherits pi on pi.inhrelid = c. oid
join pg_class c2 on c2.oid = pi.inhparent
where
d.relname = '表名';

以上是关于Postgresql查询当前表的分区的主要内容,如果未能解决你的问题,请参考以下文章

postgresql 查询中的分区给出不明确的结果

postgresql----表分区

PostgreSQL 13 - 改进大表数据聚合

使用PostgreSQL插件pg_pathman对超大表分表的实践

如何查PostgreSQL 数据库中所有的表

PostgreSQL 是不是并行查询分区?