MSSQL给字段添加默认值

create table t(id int,v int )

go

alter table t ADD DEFAULT 0 FOR v

go

原文地址:https://www.cnblogs.com/railgunman/p/8997420.html