How to Remove a Default Value to a Column in SQL Server

To remove a default value to a column in SQL Server, use the ALTER TABLE .. DROP CONSTRAINT command:

alter table products
drop constraint df_category;
database icon
Finally, a unified workspace for your SQL development
Get more done, together, with PopSQL and SQL Server