首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

自个儿平时很少用的sql语句

2012-08-11 
自己平时很少用的sql语句alter table StudentInfo--增加一个字段addpwd varchar(20) not null alter table

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

热点排行