> 데이터 베이스 > MySQL 튜토리얼 > PostgreSQL에서 인덱스와 관련된 열을 검색하는 방법은 무엇입니까?

PostgreSQL에서 인덱스와 관련된 열을 검색하는 방법은 무엇입니까?

Patricia Arquette
풀어 주다: 2024-12-31 06:48:09
원래의
855명이 탐색했습니다.

How to Retrieve Columns Associated with Indexes in PostgreSQL?

PostgreSQL에서 인덱스와 관련된 열 검색

PostgreSQL에서 인덱스에 해당하는 열 검색은 MySQL의 SHOW INDEXES 명령과 다릅니다.

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'
    and t.relname like 'test%';
로그인 후 복사

이 쿼리는 관련 열 이름과 함께 테이블 및 인덱스 이름을 검색합니다. 더 많은 정보를 얻으려면 쿼리를 수정하여 열 이름을 집계할 수 있습니다.

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'
    and t.relname like 'test%'
group by
    t.relname,
    i.relname
order by
    t.relname,
    i.relname;
로그인 후 복사

위 내용은 PostgreSQL에서 인덱스와 관련된 열을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿