PostgreSQLのテーブルのすべての制約(主キー、チェック、一意の相互排他など)を一覧表示する方法は?
制約は 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>';
置換<schema name>
はスキーマの名前と<table name>
をテーブルの名前に置き換えます。
psql
コマンドラインでは、この情報は\d+
コマンドで取得したテーブルシートにあります。 d+
は、NOT NULL
制約についても通知します。これは、pg_catalog.pg_constraint
テーブルには存在しないものです。例:
# \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)
ここでの注意点は、この方法ではすべての制約の名前を取得できないことです。