检查PostgreSQL中是否存在索引

检查PostgreSQL中是否存在索引,sql,postgresql,indexing,Sql,Postgresql,Indexing,我知道如何创建索引 CREATE INDEX ix_dsvtable ON public."DsVTable" USING btree (dind, sec, regind, datind); 我如何检查索引是否已经存在 我需要检查它们是否存在,如果它们还不存在,则创建它们。您可以使用此查询获取索引列表、它们的表和列: select t.relname as table_name, i.relname as index_name, a.attname as

我知道如何创建索引

CREATE INDEX ix_dsvtable
  ON public."DsVTable"
  USING btree
  (dind, sec, regind, datind);
我如何检查索引是否已经存在


我需要检查它们是否存在,如果它们还不存在,则创建它们。

您可以使用此查询获取索引列表、它们的表和列:

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

从那里,您可以按索引名称或涉及的列检查是否存在,并决定创建/跳过索引。

如果不存在,则创建索引…
这是我的工作。谢谢我还想知道索引是否是主索引,所以我添加了一个条件“和ix.indisprimary='f'”。此查询不会打印物化视图的索引+1尽管如此。