自己平时很少用的sql语句
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' --修改列名