Answers for "drop table with constraints sql server"

SQL
1

drop table with constraints

1. 'First Drop contrstraints like this'
ALTER TABLE table_name
DROP CONSTRAINT constraint_name;
2. 'Then drop table'
DROP TABLE table_name;
Posted by: Guest on February-19-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 table with constraints sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language