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

To add a default value to a column in SQL Server, use the ALTER TABLE .. ADD CONSTRAINT .. DEFAULT .. FOR command:

-- example: products have a default category of 1
alter table products
add constraint df_category
default 1 for category;
database icon
From SQL Server query to chart to Slack in seconds
Get to answers faster, together, with PopSQL and SQL Server