Home

Published

- 1 min read

how to see constraints in postgresql

img of how to see constraints in postgresql

The solution for this is noted below

how to see constraints in postgresql

Solution

   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>';

Try other methods by searching on the site. That is if this doesn’t work