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;
Real-time SQL collaboration is here
Get started with PopSQL and SQL Server in minutes