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查询当前表的分区的主要内容,如果未能解决你的问题,请参考以下文章