If we want to remove a CHECK
constraint from a table, but we don’t want to drop the table or column, we can use the ALTER TABLE
statement with DROP CHECK
.
Once the constraint has been dropped, data can be entered into the table without having to conform to the rules of the CHECK
constraint.