Answers for "how to add check constraint 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
0

how to add CHECK constraint to a column in postgres

alter table foo 
   add constraint check_positive check (some_code in ('A','B'));
Posted by: Guest on August-13-2021

Code answers related to "how to add check constraint in postgresql"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language