postgresql怎么查表的分区信息

834
2023/12/29 20:40:12
栏目: 云计算
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

要查看表的分区信息,可以使用以下两个 PostgreSQL 系统表:

  1. pg_partitioned_table:此表存储了所有被分区的表的信息。
  2. pg_partitioned_table:此表存储了每个分区的详细信息。

以下是一个示例查询,用于查看表的分区信息:

SELECT
    parent.relname AS parent_table,
    child.relname AS child_table,
    pg_get_expr(partition_def, parent.oid) AS partition_expression
FROM
    pg_partitioned_table AS p
JOIN
    pg_class AS parent ON p.partrelid = parent.oid
JOIN
    pg_class AS child ON p.partid = child.oid
JOIN
    pg_partitioned_table AS pp ON pp.partrelid = child.oid
ORDER BY
    parent.relname,
    child.relname;

该查询将返回被分区的表的名称、每个分区的名称以及分区表达式。

请注意,您需要有足够的权限才能查询这些系统表。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: PostgreSQL创建数据库的方法是什么