T-SQL - DROP DEFAULT Keyword
The T-SQL (Transact-SQL) DROP DEFAULT keyword is used to delete a DEFAULT CONSTRAINT.
DROP DEFAULT constraint
To drop DEFAULT constraint from City column of Employee table, the following statement can be used:
/* Drops a DEFAULT constraint named DV_City */ ALTER TABLE Employee DROP CONSTRAINT DV_City;
❮ T-SQL Keywords