修改表中某个字段的属性

alter table [表名]  alter column [字段名][ 属性] 

例子: 把Student表中Sno的int类型 修改为 varchar 类型

      alter table Student alter column Sno varchar(20) not null

原文地址:https://www.cnblogs.com/lucky9/p/6249297.html