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
SQL editing that just rocks
PopSQL and SQL Server, better together