Agregar DEFAULT a la columna existente

Respuestas:

16
ALTER TABLE yourTable ADD  CONSTRAINT constraintName  
   DEFAULT ('XYZ') FOR [YourColumn]

Para cambiar el valor predeterminado, suelte la restricción y vuelva a agregarla con el nuevo valor:

ALTER TABLE yourTable
DROP CONSTRAINT constraintName

ALTER TABLE yourTable ADD  CONSTRAINT constraintName  
   DEFAULT ('ABC') FOR [YourColumn]
SqlACID
fuente
También puede hacerlo en el diseñador.
SqlSandwiches