alter table StudentInfo --增加一个字段add pwd varchar(20) not null alter table StudentInfo --删除一个字段drop column pwdalter table dbo.User_tbl --修改字段属性alter column score varchar(10)exec sp_rename StudentInfos,StudentInfo --修改表名exec sp_rename 'StudentInfo.pwd','stuPwd','Column' --修改列名
详细解决方案
自个儿平时很少用的sql语句
热度:32 发布时间:2016-05-05 14:33:26.0
相关解决方案