Answers for "DROP check constraint in sql"

SQL
4

sql constraint check value in list

ALTER TABLE <table>
ADD CONSTRAINT chk_val CHECK (col in ('yes','no','maybe'))
Posted by: Guest on May-24-2020
0

drop CHECK constraint sql

DROP CONSTRAINT ConstraintName;
Posted by: Guest on April-14-2021
0

Drop check constraint in ms sql

/*To Drop Check Constraint*/
ALTER TABLE (Table_Name)
DROP CONSTRAINT (Constraint_Name)
Posted by: Guest on June-09-2021

Code answers related to "DROP check constraint in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language