alter table Student add mi_id char(6) ----添加一列
alter table Student alter column mi_id int ----修改列的数据类型为int
alter table Student drop column mi_id ---删除列
alter table Student add mi_id int NOT NULL default ('1') ; ----添加一列且有默认值
alter table Student drop constraint DFault__Student --删除约束
exec sp_rename 'dbo.Student.sexy5','sexy','column' --重命名表Student列sexy5的列名