首页 > 数据库 > mysql教程 > 如何在 PostgreSQL 中检索索引列?

如何在 PostgreSQL 中检索索引列?

Barbara Streisand
发布: 2024-12-28 11:33:46
原创
597 人浏览过

How to Retrieve Indexed Columns in PostgreSQL?

检索 PostgreSQL 中的索引列

要获取 PostgreSQL 中索引的列,您可以使用以下查询:

SELECT
    t.relname AS table_name,
    i.relname AS index_name,
    a.attname AS column_name
FROM
    pg_class t,
    pg_class i,
    pg_index ix,
    pg_attribute a
WHERE
    t.oid = ix.indrelid
    AND i.oid = ix.indexrelid
    AND a.attrelid = t.oid
    AND a.attnum = ANY(ix.indkey)
    AND t.relkind = 'r';
登录后复制

要按索引进一步聚合结果,请使用此查询:

SELECT
    t.relname AS table_name,
    i.relname AS index_name,
    array_to_string(array_agg(a.attname), ', ') AS column_names
FROM
    pg_class t,
    pg_class i,
    pg_index ix,
    pg_attribute a
WHERE
    t.oid = ix.indrelid
    AND i.oid = ix.indexrelid
    AND a.attrelid = t.oid
    AND a.attnum = ANY(ix.indkey)
    AND t.relkind = 'r'
GROUP BY
    t.relname,
    i.relname;
登录后复制

PostgreSQL 元信息提取的其他资源:

  • [pg_index](https://www.postgresql.org/docs /current/static/view-pg-index.html)
  • ["从中提取 META 信息PostgreSQL"](https://www.depesz.com/2007/08/12/extracting-meta-information-from-postgresql/)

以上是如何在 PostgreSQL 中检索索引列?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板