SQL Server 修改字段类型,新增字段

修改字段类型

alter table 表名 alter column 列名 类型 not null

新增字段

alter table 表名 add 字段 类型 not null

原文地址:https://www.cnblogs.com/yejiao/p/7324138.html