Answers for "drop constraint dynamically sql server"

SQL
1

dropping a constraint in ms sql

/*Dropping a Constraint*/
ALTER TABLE (Table_Name)
DROP CONSTRAINT (Constraint_Name)
Posted by: Guest on June-08-2021
1

drop df constraint sql server

ALTER TABLE NameTable	DROP CONSTRAINT Name_Constraint;
-- Example
--ALTER TABLE iso.works	DROP CONSTRAINT DF__works__idSubMont__4D5F7D71;
Posted by: Guest on June-07-2021

Code answers related to "drop constraint dynamically sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language