แสดงรายการคอลัมน์ที่มีดัชนีใน PostgreSQL


233

ฉันต้องการรับคอลัมน์ที่มีดัชนีอยู่ใน PostgreSQL

ใน MySQL คุณสามารถใช้SHOW INDEXES FOR tableและดูColumn_nameคอลัมน์

mysql> show indexes from foos;

+-------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table | Non_unique | Key_name            | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+-------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| foos  |          0 | PRIMARY             |            1 | id          | A         |       19710 |     NULL | NULL   |      | BTREE      |         | 
| foos  |          0 | index_foos_on_email |            1 | email       | A         |       19710 |     NULL | NULL   | YES  | BTREE      |         | 
| foos  |          1 | index_foos_on_name  |            1 | name        | A         |       19710 |     NULL | NULL   |      | BTREE      |         | 
+-------+------------+---------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+

มีอะไรอย่างนี้เกิดขึ้นอีกไหมสำหรับ PostgreSQL?

ฉันได้ลอง\dใช้psqlพรอมต์คำสั่ง (พร้อม-Eตัวเลือกเพื่อแสดง SQL) แต่ไม่แสดงข้อมูลที่ฉันต้องการ

อัปเดต:ขอบคุณทุกคนที่เพิ่มคำตอบ รับมือ 360ให้สิ่งที่ฉันกำลังมองหา แต่หลายคนก็ติดใจด้วยลิงค์ที่มีประโยชน์มาก สำหรับการอ้างอิงในอนาคตให้ตรวจสอบเอกสารสำหรับpg_index (ผ่านMilen A. Radev ) และบทความที่มีประโยชน์มากการดึงข้อมูล META จาก PostgreSQL (ผ่านMichał Niklas )


เพื่อชี้แจง: คุณต้องการให้โปรแกรมของคุณสามารถหาคำสั่งในขณะรันไทม์ซึ่งมีการจัดทำดัชนีคอลัมน์ใช่ไหม ตรงข้ามกับคุณรู้การเขียนโปรแกรม
Wayne Conrad

ใช่ถูกต้อง. นึกคิดฉันต้องการคำสั่ง SQL ที่แสดงเฉพาะคอลัมน์ที่ดัชนีอยู่ แต่ฉันรู้ว่า PostgreSQL นั้นซับซ้อนกว่า MySQL และดัชนีอาจอยู่ในฟังก์ชั่น ฯลฯ
Luke Francl

คำตอบ:


261

สร้างข้อมูลทดสอบ ...

create table test (a int, b int, c int, constraint pk_test primary key(a, b));
create table test2 (a int, b int, c int, constraint uk_test2 unique (b, c));
create table test3 (a int, b int, c int, constraint uk_test3b unique (b), constraint uk_test3c unique (c),constraint uk_test3ab unique (a, b));

รายการดัชนีและคอลัมน์ที่จัดทำดัชนี:

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%'
order by
    t.relname,
    i.relname;

 table_name | index_name | column_name
------------+------------+-------------
 test       | pk_test    | a
 test       | pk_test    | b
 test2      | uk_test2   | b
 test2      | uk_test2   | c
 test3      | uk_test3ab | a
 test3      | uk_test3ab | b
 test3      | uk_test3b  | b
 test3      | uk_test3c  | c

พับชื่อคอลัมน์:

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;

 table_name | index_name | column_names
------------+------------+--------------
 test       | pk_test    | a, b
 test2      | uk_test2   | b, c
 test3      | uk_test3ab | a, b
 test3      | uk_test3b  | b
 test3      | uk_test3c  | c

24
สำหรับทุกคนที่พยายามค้นหาดัชนีในฐานข้อมูลที่มีประชากร: แบบสอบถามนี้ใช้งานได้ดี แต่เปลี่ยนand t.relname like 'test%'บรรทัดเป็นตารางที่คุณต้องการหรือลบบรรทัดนั้นโดยสมบูรณ์เพื่อค้นหาดัชนีทั้งหมดในฐานข้อมูลของคุณ
Erik J

1
ใครช่วยอธิบายความrelkind='r'หมายได้บ้าง
Qwerty

5
@Qwery ดูเอกสารสำหรับ r = ordinary table, i = index, S = sequence, v = view, c = composite type, t = TOAST tablepg_class
deal360

1
มีวิธีที่จะบอกเกี่ยวกับเอกลักษณ์ของคีย์หรือไม่
Andrew

2
เพื่อดูค่าดัชนีที่ไม่ซ้ำใครให้เลือกด้วยเช่นกันix.indisunique
Jana

177

PostgreSQL ( pg_indexes ):

SELECT * FROM pg_indexes WHERE tablename = 'mytable';

MySQL ( แสดงดัชนี ):

SHOW INDEX FROM mytable;

3
นี่คือคำตอบที่ตรงไปตรงมาที่สุดและน่าสนใจที่สุดในแง่ของการตอบคำถาม "คอลัมน์ของฉันถูกทำดัชนีหรือไม่?" PostgreSQL: และตรวจสอบSELECT COUNT(indexname) AS indexcount FROM pg_indexes WHERE tablename='mytablename' AND indexdef LIKE '%mycolumnname%' ; indexcount>0mySQL: SHOW INDEX FROM mytablename WHERE Column_name='mycolumnname' ;และตรวจสอบชุดผลลัพธ์ไม่ว่างเปล่า
zerobandwidth

2
แม้ว่านี่จะเป็นคำตอบที่มีประโยชน์มากในแง่ของการดึงข้อมูลอย่างรวดเร็วเกี่ยวกับดัชนี แต่มันไม่ได้ตอบคำถามเดิมเพราะpg_indexesมุมมองไม่ได้ให้ชื่อคอลัมน์ postgresql.org/docs/current/view-pg-indexes.html
akagixxer

146

\d table_nameแสดงข้อมูลนี้จากpsqlแต่ถ้าคุณต้องการรับข้อมูลดังกล่าวจากฐานข้อมูลโดยใช้ SQL ให้ดูที่การแยกข้อมูล META จาก PostgreSQLPostgreSQL

ฉันใช้ข้อมูลดังกล่าวในยูทิลิตี้ของฉันเพื่อรายงานข้อมูลบางส่วนจาก db schemaเพื่อเปรียบเทียบฐานข้อมูล PostgreSQL ในสภาพแวดล้อมการทดสอบและการผลิต


ลิงก์ของคุณเกี่ยวกับการดึงข้อมูลเมตาจาก Postgres เป็นสิ่งที่ฉันกำลังมองหา! การใช้เคล็ดลับในชุดข้อความนี้และการขุดบางอย่างฉันค่อนข้างใกล้เคียงกับคำถามที่เขาใช้ในโพสต์นั้น แต่ก็ดีที่มีแบบนี้ทั้งหมด
ลุคฟรังก์

1
ฉันใช้ AWS RDS PostgreSQL 9.6.5 และ\d tableไม่แสดงดัชนีใด ๆ แต่\diจะแสดงดัชนีทั้งหมด
Hendy Irawan

@HendyIrawan ดูเหมือนว่าจะได้รับผลกระทบจากการตั้งค่าอื่น ๆ เช่นฉันสงสัยว่าคุณมีโหมด "tuples เท่านั้น" เปิด (สลับโดย\t) ด้วยการเปิด "tuples เท่านั้น" ฉันไม่ได้รับดัชนีจาก\dเมื่อปิด "tuples เท่านั้น" ฉันก็ทำได้ นี่คือกับ psql (PostgreSQL) 9.6.15
JMM

77

แค่ทำ: \d table_name

แต่ฉันไม่แน่ใจว่าสิ่งที่คุณหมายถึงว่าข้อมูลเกี่ยวกับคอลัมน์ไม่ได้มี

ตัวอย่างเช่น:

# \d pg_class
       Table "pg_catalog.pg_class"
     Column      |   Type    | Modifiers
-----------------+-----------+-----------
 relname         | name      | not null
 relnamespace    | oid       | not null
 reltype         | oid       | not null
 reloftype       | oid       | not null
 relowner        | oid       | not null
 relam           | oid       | not null
 relfilenode     | oid       | not null
 reltablespace   | oid       | not null
 relpages        | integer   | not null
 reltuples       | real      | not null
 reltoastrelid   | oid       | not null
 reltoastidxid   | oid       | not null
 relhasindex     | boolean   | not null
 relisshared     | boolean   | not null
 relistemp       | boolean   | not null
 relkind         | "char"    | not null
 relnatts        | smallint  | not null
 relchecks       | smallint  | not null
 relhasoids      | boolean   | not null
 relhaspkey      | boolean   | not null
 relhasexclusion | boolean   | not null
 relhasrules     | boolean   | not null
 relhastriggers  | boolean   | not null
 relhassubclass  | boolean   | not null
 relfrozenxid    | xid       | not null
 relacl          | aclitem[] |
 reloptions      | text[]    |
Indexes:
    "pg_class_oid_index" UNIQUE, btree (oid)
    "pg_class_relname_nsp_index" UNIQUE, btree (relname, relnamespace)

มันแสดงให้เห็นชัดเจนว่าคอลัมน์ใดที่ให้ดัชนีอยู่ในตารางนี้


ฉันหวังว่าจะมีบางสิ่งที่จะให้ฉันทำดัชนีทั้งหมดบนโต๊ะ แต่คุณพูดถูก\d index_nameต้องมีข้อมูล ดังนั้นฉันสามารถค้นหาดัชนีบนโต๊ะจากนั้นค้นหารายละเอียด โดยไม่แสดงคอลัมน์ฉันหมายความว่าฉันดู SQL ที่สร้างโดย\d tableชื่อและไม่ชัดเจนกับฉันที่รายการคอลัมน์มาจาก ฉันคิดว่ามันถูกแยกออกมาจากคำจำกัดความของดัชนีซึ่งฉันไม่ต้องการทำ
ลุคฟรังก์

ฉันใช้ AWS RDS PostgreSQL 9.6.5 และ\d tableไม่แสดงดัชนีใด ๆ แต่\diจะแสดงดัชนีทั้งหมด
Hendy Irawan

37

# \di

วิธีที่ง่ายและสั้นที่สุดคือ\diซึ่งจะแสดงรายการดัชนีทั้งหมดในฐานข้อมูลปัจจุบัน

$ \di
                      List of relations
 Schema |            Name             | Type  |  Owner   |     Table     
--------+-----------------------------+-------+----------+---------------
 public | part_delivery_index         | index | shipper  | part_delivery
 public | part_delivery_pkey          | index | shipper  | part_delivery
 public | shipment_by_mandator        | index | shipper  | shipment_info
 public | shipment_by_number_and_size | index | shipper  | shipment_info
 public | shipment_info_pkey          | index | shipper  | shipment_info
(5 rows)

\diเป็น "น้องชายคนเล็ก" ของ\dคำสั่งซึ่งจะแสดงรายการความสัมพันธ์ทั้งหมดของd atabase ปัจจุบัน ดังนั้น\diแน่นอนยืนสำหรับ "แสดงฉันนี้d atabases i ndexes"

การพิมพ์\diSจะแสดงรายการดัชนีทั้งหมดที่ใช้ทั้งระบบซึ่งหมายความว่าคุณจะได้รับดัชนี pg_catalog ทั้งหมดเช่นกัน

$ \diS
                                      List of relations
   Schema   |                   Name                    | Type  |  Owner   |          Table
------------+-------------------------------------------+-------+----------+-------------------------
 pg_catalog | pg_aggregate_fnoid_index                  | index | postgres | pg_aggregate
 pg_catalog | pg_am_name_index                          | index | postgres | pg_am
 pg_catalog | pg_am_oid_index                           | index | postgres | pg_am
 pg_catalog | pg_amop_fam_strat_index                   | index | postgres | pg_amop
 pg_catalog | pg_amop_oid_index                         | index | postgres | pg_amop
 pg_catalog | pg_amop_opr_fam_index                     | index | postgres | pg_amop
 pg_catalog | pg_amproc_fam_proc_index                  | index | postgres | pg_amproc
 pg_catalog | pg_amproc_oid_index                       | index | postgres | pg_amproc
 pg_catalog | pg_attrdef_adrelid_adnum_index            | index | postgres | pg_attrdef
--More-- 

ด้วยคำสั่งทั้งสองนี้คุณสามารถเพิ่มคำสั่ง+เพื่อให้ได้ข้อมูลเพิ่มเติมเช่นขนาดพื้นที่ดิสก์ที่ดัชนีต้องการและคำอธิบายหากมี

$ \di+
                                 List of relations
 Schema |            Name             | Type  |  Owner   |     Table     | Size  | Description 
--------+-----------------------------+-------+----------+---------------+-------+-------------
 public | part_delivery_index         | index | shipper  | part_delivery | 16 kB | 
 public | part_delivery_pkey          | index | shipper  | part_delivery | 16 kB | 
 public | shipment_by_mandator        | index | shipper  | shipment_info | 19 MB | 
 public | shipment_by_number_and_size | index | shipper  | shipment_info | 19 MB | 
 public | shipment_info_pkey          | index | shipper  | shipment_info | 53 MB | 
(5 rows)

ใน psql \?คุณสามารถค้นหาความช่วยเหลือเกี่ยวกับคำสั่งการพิมพ์


2
แต่จะไม่แสดงชื่อคอลัมน์ที่สร้างดัชนี ดัชนีคีย์หลักผสมมีหลายคอลัมน์และไม่สามารถมองเห็นได้
Vignesh Raja

18

รวมกับรหัสอื่น ๆ และสร้างมุมมอง:

CREATE OR REPLACE VIEW view_index AS 
SELECT
     n.nspname  as "schema"
    ,t.relname  as "table"
    ,c.relname  as "index"
    ,pg_get_indexdef(indexrelid) as "def"
FROM pg_catalog.pg_class c
    JOIN pg_catalog.pg_namespace n ON n.oid        = c.relnamespace
    JOIN pg_catalog.pg_index i ON i.indexrelid = c.oid
    JOIN pg_catalog.pg_class t ON i.indrelid   = t.oid
WHERE c.relkind = 'i'
    and n.nspname not in ('pg_catalog', 'pg_toast')
    and pg_catalog.pg_table_is_visible(c.oid)
ORDER BY
     n.nspname
    ,t.relname
    ,c.relname;

12

ตัวอย่างข้อมูลบางส่วน ...

create table test (a int, b int, c int, constraint pk_test primary key(a, b));
create table test2 (a int, b int, c int, constraint uk_test2 unique (b, c));
create table test3 (a int, b int, c int, constraint uk_test3b unique (b), constraint uk_test3c unique (c), constraint uk_test3ab unique (a, b));

ใช้pg_get_indexdefฟังก์ชั่น:

select pg_get_indexdef(indexrelid) from pg_index where indrelid = 'test'::regclass;

                    pg_get_indexdef
--------------------------------------------------------
 CREATE UNIQUE INDEX pk_test ON test USING btree (a, b)
(1 row)


select pg_get_indexdef(indexrelid) from pg_index where indrelid = 'test2'::regclass;
                     pg_get_indexdef
----------------------------------------------------------
 CREATE UNIQUE INDEX uk_test2 ON test2 USING btree (b, c)
(1 row)


select pg_get_indexdef(indexrelid) from pg_index where indrelid ='test3'::regclass;
                      pg_get_indexdef
------------------------------------------------------------
 CREATE UNIQUE INDEX uk_test3b ON test3 USING btree (b)
 CREATE UNIQUE INDEX uk_test3c ON test3 USING btree (c)
 CREATE UNIQUE INDEX uk_test3ab ON test3 USING btree (a, b)
(3 rows)

ง่ายและมีประสิทธิภาพ!
David

ยอดเยี่ยมมาก ฉันโชคดีที่ฉันได้เลื่อนไปที่คำตอบนี้
greatvovan

8

คำสั่งนี้แสดงมุมมองของตัวแปรตารางดัชนีและข้อ จำกัด เช่นกัน

=# \d table_name;

ตัวอย่าง:

testannie=# \d dv.l_customer_account;


7

ผลลัพธ์ของแบบสอบถาม:

table |     column     |          type          | notnull |  index_name  | is_index | primarykey | uniquekey | default
-------+----------------+------------------------+---------+--------------+----------+-   -----------+-----------+---------
 nodes | dns_datacenter | character varying(255) | f       |              | f        | f          | f         |
 nodes | dns_name       | character varying(255) | f       | dns_name_idx | t        | f          | f         |
 nodes | id             | uuid                   | t       | nodes_pkey   | t        | t          | t         |
(3 rows)

ค้นหา:

SELECT  
c.relname AS table,
f.attname AS column,  
pg_catalog.format_type(f.atttypid,f.atttypmod) AS type,
f.attnotnull AS notnull,  
i.relname as index_name,
CASE  
    WHEN i.oid<>0 THEN 't'  
    ELSE 'f'  
END AS is_index,  
CASE  
    WHEN p.contype = 'p' THEN 't'  
    ELSE 'f'  
END AS primarykey,  
CASE  
    WHEN p.contype = 'u' THEN 't' 
    WHEN p.contype = 'p' THEN 't' 
    ELSE 'f'
END AS uniquekey,
CASE
    WHEN f.atthasdef = 't' THEN d.adsrc
END AS default  FROM pg_attribute f  
JOIN pg_class c ON c.oid = f.attrelid  
JOIN pg_type t ON t.oid = f.atttypid  
LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum  
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace  
LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)  
LEFT JOIN pg_class AS g ON p.confrelid = g.oid
LEFT JOIN pg_index AS ix ON f.attnum = ANY(ix.indkey) and c.oid = f.attrelid and c.oid = ix.indrelid 
LEFT JOIN pg_class AS i ON ix.indexrelid = i.oid 

WHERE c.relkind = 'r'::char  
AND n.nspname = 'public'  -- Replace with Schema name 
--AND c.relname = 'nodes'  -- Replace with table name, or Comment this for get all tables
AND f.attnum > 0
ORDER BY c.relname,f.attname;

สิ่งที่ดีอย่างไรก็ตามชื่อ "คอลัมน์" สำหรับคอลัมน์เป็นคำที่สงวนไว้ IDEM สำหรับสคีมาควรใช้ column_name
parisni

5

ข้อมูลดิบอยู่ในpg_index


น่าสนใจ โดยเฉพาะindkey: "นี่คืออาร์เรย์ของค่า indnatts ที่ระบุว่าคอลัมน์ตารางใดที่ดัชนีดัชนีนี้ตัวอย่างเช่นค่า 1 3 จะหมายถึงคอลัมน์คอลัมน์แรกและคอลัมน์ที่สามประกอบด้วยคีย์ดัชนีศูนย์ในอาร์เรย์นี้บ่งชี้ว่า แอตทริบิวต์ดัชนีที่สอดคล้องกันคือการแสดงออกเหนือคอลัมน์ตารางมากกว่าการอ้างอิงคอลัมน์ง่าย
Luke Francl

2

หากคุณต้องการรักษาลำดับคอลัมน์ในดัชนีต่อไปนี้เป็นวิธีที่น่าเกลียดมาก:

select table_name,
    index_name,
    array_agg(column_name)
from (
    select
        t.relname as table_name,
        i.relname as index_name,
        a.attname as column_name,
        unnest(ix.indkey) as unn,
        a.attnum
    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.relnamespace = <oid of the schema you're interested in>
    order by
        t.relname,
        i.relname,
        generate_subscripts(ix.indkey,1)) sb
where unn = attnum
group by table_name, index_name

ลำดับของคอลัมน์ถูกเก็บไว้ในคอลัมน์ pg_index.indkey ดังนั้นฉันจึงสั่งให้ห้อยจากแถวนั้น


2

เมื่อเล่นกับดัชนีลำดับของคอลัมน์ที่สร้างในดัชนีนั้นมีความสำคัญเท่ากับตัวคอลัมน์เอง

แบบสอบถามต่อไปนี้แสดงรายการดัชนีทั้งหมดสำหรับตารางที่กำหนดและคอลัมน์ทั้งหมดของพวกเขาในรูปแบบที่เรียงลำดับ

SELECT
  table_name,
  index_name,
  string_agg(column_name, ',')
FROM (
       SELECT
         t.relname AS table_name,
         i.relname AS index_name,
         a.attname AS column_name,
         (SELECT i
          FROM (SELECT
                  *,
                  row_number()
                  OVER () i
                FROM unnest(indkey) WITH ORDINALITY AS a(v)) a
          WHERE v = attnum)
       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 'tablename'
       ORDER BY table_name, index_name, i
     ) raw
GROUP BY table_name, index_name

2
เหตุใด OP จึงควรลองทำสิ่งนี้ คำตอบที่ดีมักจะมีคำอธิบายของสิ่งที่ทำและทำไมมันทำแบบนั้นไม่เพียง แต่สำหรับ OP แต่สำหรับผู้เข้าชมในอนาคตเพื่อที่อาจจะพบว่าคำถามนี้และจะอ่านคำตอบของคุณ
Maximilian Ast

iสำหรับ ordinality คือเนียนมาก มันช่วยให้มั่นใจว่าคอลัมน์จะถูกระบุไว้ในลำดับที่ถูกต้อง
kbrock

นี่เป็นคำตอบเดียวที่เหมาะกับฉัน ลำดับคอลัมน์เป็นสิ่งสำคัญ (ถ้าคุณไม่เชื่อฉันให้มองหาทุกคนที่มีชื่อแฟรงค์ในสมุดโทรศัพท์)
Juraj

1

โปรดลองค้นหาด้านล่างเพื่อเจาะลึกถึงดัชนีที่ต้องการ

ข้อความค้นหาด้านล่าง - ฉันได้ลองทำแบบนี้เป็นการส่วนตัวแล้วใช้บ่อย

SELECT n.nspname as "Schema",
  c.relname as "Name",
  CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view' WHEN 'i' 
THEN 'index' WHEN 'S' THEN 'sequence' WHEN 's' THEN 'special' END as "Type",
  u.usename as "Owner",
 c2.relname as "Table"
FROM pg_catalog.pg_class c
     JOIN pg_catalog.pg_index i ON i.indexrelid = c.oid
     JOIN pg_catalog.pg_class c2 ON i.indrelid = c2.oid
     LEFT JOIN pg_catalog.pg_user u ON u.usesysid = c.relowner
     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('i','')
      AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
      AND pg_catalog.pg_table_is_visible(c.oid)
      AND c2.relname like '%agg_transaction%' --table name
      AND nspname = 'edjus' -- schema name 
ORDER BY 1,2;

1

คล้ายกับคำตอบที่ยอมรับ แต่ต้องออกจากการเข้าร่วมในpg_attributeเช่นการเข้าร่วมปกติหรือการสืบค้นด้วยpg_attributeไม่ได้ให้ดัชนีซึ่งเป็นดังนี้:
create unique index unique_user_name_index on users (lower(name))

select 
    row_number() over (order by c.relname),
    c.relname as index, 
    t.relname as table, 
    array_to_string(array_agg(a.attname), ', ') as column_names 
from pg_class c
join pg_index i on c.oid = i.indexrelid and c.relkind='i' and c.relname not like 'pg_%' 
join pg_class t on t.oid = i.indrelid
left join pg_attribute a on a.attrelid = t.oid and a.attnum = ANY(i.indkey) 
group by t.relname, c.relname order by c.relname;

โน้ตที่ดี แต่วิธีการรับข้อมูลเกี่ยวกับ "lower (column_name") "
pleerock

1

นี่คือฟังก์ชั่นที่ครอบคลุมคำตอบของ Tre ​​s360:

CREATE OR REPLACE FUNCTION getIndices(_table_name varchar)
  RETURNS TABLE(table_name varchar, index_name varchar, column_name varchar) AS $$
  BEGIN
    RETURN QUERY
    select
    t.relname::varchar as table_name,
    i.relname::varchar as index_name,
    a.attname::varchar 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 = _table_name
order by
    t.relname,
    i.relname;
  END;
  $$ LANGUAGE plpgsql;

การใช้งาน:

select * from getIndices('<my_table>')

ไม่แสดงรายการบางส่วนของดัชนีของฉันที่ใช้ฟังก์ชั่น (เช่น "ด้านบน (field_name)")
JohnMudd

0

วิธีการแก้ปัญหาง่ายๆ:

SELECT 
  t.relname table_name,
  ix.relname index_name,
  indisunique,
  indisprimary, 
  regexp_replace(pg_get_indexdef(indexrelid), '.*\((.*)\)', '\1') columns
FROM pg_index i
JOIN pg_class t ON t.oid = i.indrelid
JOIN pg_class ix ON ix.oid = i.indexrelid
WHERE t.relname LIKE 'test%'

`


รักทางออกนี้ น่าเสียดายที่มันล้มเหลวด้วยดัชนีที่มีส่วนคำสั่ง (หรือวงเล็บอื่น ๆ )
kbrock

ฉันเปลี่ยนเป็นไม่ข้าม parens ที่จุดเริ่มต้นและไม่จับ parens ตรงกลางและวางทุกอย่างหลังจากนั้น '^[^\)]*\(([^\)]*)\).*$'
kbrock

0

คำตอบที่ดีของ @hand360 แปลงเป็นใช้ไวยากรณ์การเข้าร่วม

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
join pg_index ix
on t.oid = ix.indrelid
join pg_class i
on i.oid = ix.indexrelid
join pg_attribute a
on a.attrelid = t.oid
and a.attnum = ANY(ix.indkey)
where t.relkind = 'r'
and t.relname like 'test%'
group by t.relname
       , i.relname
order by t.relname
       , i.relname
;

0

ฉันไม่คิดว่ารุ่นนี้มีอยู่ในกระทู้นี้: มันมีทั้งรายชื่อคอลัมน์พร้อมกับ ddl สำหรับดัชนี

CREATE OR REPLACE VIEW V_TABLE_INDEXES AS

SELECT
     n.nspname  as "schema"
    ,t.relname  as "table"
    ,c.relname  as "index"
    ,i.indisunique AS "is_unique"
    ,array_to_string(array_agg(a.attname), ', ') as "columns"
    ,pg_get_indexdef(i.indexrelid) as "ddl"
FROM pg_catalog.pg_class c
    JOIN pg_catalog.pg_namespace n ON n.oid        = c.relnamespace
    JOIN pg_catalog.pg_index i ON i.indexrelid = c.oid
    JOIN pg_catalog.pg_class t ON i.indrelid   = t.oid
    JOIN pg_attribute a ON a.attrelid = t.oid AND a.attnum = ANY(i.indkey)
WHERE c.relkind = 'i'
      and n.nspname not in ('pg_catalog', 'pg_toast')
      and pg_catalog.pg_table_is_visible(c.oid)
GROUP BY
    n.nspname
    ,t.relname
    ,c.relname
    ,i.indisunique
    ,i.indexrelid
ORDER BY
    n.nspname
    ,t.relname
    ,c.relname;

ฉันพบว่าดัชนีที่ใช้ฟังก์ชั่นไม่ได้เชื่อมโยงกับชื่อคอลัมน์ดังนั้นบางครั้งคุณจะพบรายการดัชนีเช่นชื่อคอลัมน์หนึ่งเมื่อใช้จริง 3

ตัวอย่าง:

CREATE INDEX ui1 ON table1 (coalesce(col1,''),coalesce(col2,''),col3)

แบบสอบถามจะส่งกลับเฉพาะ 'col3' เป็นคอลัมน์ในดัชนี แต่ DDL จะแสดงชุดคอลัมน์ทั้งหมดที่ใช้ในดัชนี


0

ขยายไปสู่คำตอบที่ดีของ @ Cope360 เพื่อให้ได้ตารางที่แน่นอน (ในกรณีของพวกเขาคือชื่อตารางเดียวกัน แต่สคีมาที่แตกต่างกัน) เพียงแค่ใช้ OID ของตาราง

select
     t.relname as table_name
    ,i.relname as index_name
    ,a.attname as column_name
    ,a.attrelid tableid

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 'tbassettype'
    and a.attrelid = '"dbLegal".tbassettype'::regclass
order by
    t.relname,
    i.relname;

อธิบาย: ฉันมีชื่อตาราง 'tbassettype' ทั้งใน schema 'dbAsset' และ 'dbLegal' หากต้องการรับเฉพาะตารางบน dbLegal ให้ปล่อย a.attrelid = OID


0

คำตอบที่แก้ไขเล็กน้อยของ @hand360:

create table test (a int, b int, c int, constraint pk_test primary key(c, a, b));
select i.relname as index_name,
       ix.indisunique as is_unique,
       a.attname as column_name,
from pg_class c
       inner join pg_index ix on c.oid=ix.indrelid
       inner join pg_class i on ix.indexrelid=i.oid
       inner join pg_attribute a on a.attrelid=c.oid and a.attnum=any(ix.indkey)
where c.oid='public.test'::regclass::oid
order by array_position(ix.indkey, a.attnum) asc;

สิ่งนี้จะแสดงคอลัมน์ดัชนีในลำดับที่ถูกต้อง:

index_name      is_unique  column_name
pk_test         true       c
pk_test         true       a
pk_test         true       b

การใช้ "left join pg_attribute" จะแสดงดัชนีของคอลัมน์จากการคำนวณแน่นอนด้วย NULL column_name
เปาโล Bonzini

0
select t.relname as table_name, 
       i.relname as index_name, 
       array_position(ix.indkey,a.attnum) pos, 
       a.attname as column_name
from pg_class t
join pg_index ix on t.oid = ix.indrelid
join pg_class i on i.oid = ix.indexrelid
join pg_attribute a on a.attrelid = t.oid and a.attnum = ANY(ix.indkey)
where t.relkind = 'r'
and t.relname like 'orders'
order by t.relname, i.relname, array_position(ix.indkey,a.attnum)

0

คำตอบที่ได้รับการยอมรับโดย @ Tac360 นั้นดี แต่ฉันต้องการอะไรมากกว่านี้เช่น DBA_IND_COLUMNS ของ Oracle, ALL_IND_COLUMNS, และ USER_IND_COLUMNS (เช่นรายงานตาราง / ดัชนีสคีมาและตำแหน่งของดัชนีในดัชนีหลายคอลัมน์) ตอบคำถามนี้:

with
 ind_cols as (
select
    n.nspname as schema_name,
    t.relname as table_name,
    i.relname as index_name,
    a.attname as column_name,
    1 + array_position(ix.indkey, a.attnum) as column_position
from
     pg_catalog.pg_class t
join pg_catalog.pg_attribute a on t.oid    =      a.attrelid 
join pg_catalog.pg_index ix    on t.oid    =     ix.indrelid
join pg_catalog.pg_class i     on a.attnum = any(ix.indkey)
                              and i.oid    =     ix.indexrelid
join pg_catalog.pg_namespace n on n.oid    =      t.relnamespace
where t.relkind = 'r'
order by
    t.relname,
    i.relname,
    array_position(ix.indkey, a.attnum)
)
select * 
from ind_cols
where schema_name = 'test'
  and table_name  = 'indextest'
order by schema_name, table_name
;

สิ่งนี้ให้ผลลัพธ์เช่น:

 schema_name | table_name | index_name | column_name | column_position 
-------------+------------+------------+-------------+-----------------
 test        | indextest  | testind1   | singleindex |               1
 test        | indextest  | testind2   | firstoftwo  |               1
 test        | indextest  | testind2   | secondoftwo |               2
(3 rows)
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.