51Testing软件测试论坛

标题: sqlserver alter table 用法 [打印本页]

作者: ottobaby    时间: 2014-5-4 21:53
标题: sqlserver alter table 用法
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的列名




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2