原创 Sql Server 增加字段、修改字段、修改類型、修改默認值

1、修改字段名:   alter table 表名 rename column A to B 2、修改字段類型:   alter table 表名 alter column 字段名 type not null 3、修改字段默認值   a