How Can Remove Constraint From Table In SQL Server?

How Can Remove Constraint From Table In SQL Server? In Object Explorer, expand the table with the check constraint. Expand Constraints. Right-click the constraint and click Delete. In the Delete Object dialog box, click OK. How do you remove constraints in a table? ALTER TABLE “table_name” DROP [CONSTRAINT|INDEX] “CONSTRAINT_NAME”; ALTER TABLE Customer DROP INDEX Con_First;