Answers for "how to see constraints in postgresql"

0

how to see constraints in postgresql

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>';
Posted by: Guest on November-09-2020

Code answers related to "how to see constraints in postgresql"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language