Answers for "not null constraint postgres"

SQL
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

postgresql add not null and not empty constraint

ads character varying(60) NOT NULL CHECK (ads <> '')
Posted by: Guest on February-24-2020

Code answers related to "not null constraint postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language