Come elencare tutti i vincoli di una tabella in PostgreSQL?


Risposte:


33

I vincoli possono essere recuperati tramite pg_catalog.pg_constraint.

SELECT con.*
       FROM pg_catalog.pg_constraint con
            INNER JOIN pg_catalog.pg_class rel
                       ON rel.oid = con.conrelid
            INNER JOIN pg_catalog.pg_namespace nsp
                       ON nsp.oid = connamespace
       WHERE nsp.nspname = '<schema name>'
             AND rel.relname = '<table name>';

Sostituisci <schema name>con il nome dello schema e <table name>con il nome della tabella.


1
Si noti che pg_catalog.pg_constraintnon contiene NOT NULLvincoli.
Luís de Sousa,

6

Nella psqlriga di comando questa informazione è nel foglio della tabella, ottenuta con il \d+comando. d+informa anche sui NOT NULLvincoli, qualcosa che non è presente nella pg_catalog.pg_constrainttabella. Un esempio:

# \d+ observations.stream   
                                                  Table "observations.stream"
 Column |       Type        | Collation | Nullable | Default | Storage  | Stats target |                 Description                 
--------+-------------------+-----------+----------+---------+----------+--------------+---------------------------------------------
 id     | integer           |           | not null |         | plain    |              | 
 name   | character varying |           | not null |         | extended |              | This should be a table in the import schema
 min_id | integer           |           | not null |         | plain    |              | 
 about  | character varying |           | not null |         | extended |              | 
Indexes:
    "stream_pkey" PRIMARY KEY, btree (id)
    "stream_name_key" UNIQUE CONSTRAINT, btree (name)
Check constraints:
    "stream_id_check" CHECK (id > 0)
Referenced by:
    TABLE "profile" CONSTRAINT "profile_id_stream_fkey" FOREIGN KEY (id_stream) REFERENCES stream(id)

L'avvertenza qui è che non si ottengono i nomi di tutti i vincoli in questo modo.


Vedo i nomi dei vincoli nell'output pubblicato.
ypercubeᵀᴹ
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.