Answer: using following line of code:
ALTER TABLE <tablename>
DROP CONSTRAINT <constrain name>
Example: There is a table named tblTest and having a constraint "test_Constraint'
ALTER TABLE tblTest
DROP CONSTRAINT test_Constraint
Asked In: Many Interviews |
Alert Moderator