码迷,mamicode.com
首页 > 数据库 > 详细

sql server 学习笔记

时间:2017-05-11 18:34:22      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:res   pre   修改   div   添加   学习   log   table   varchar   

1. 修改student表中sdept字段改为varchar类型,长度为30,并且不为空

1 alter table student alter column sdept varchar(30) not null

2. 删除student表中的address列

1 alter table student drop column address

3. 向student表中添加一个列 code 和 address

1 alter table student add code char(6) not null ,address varchar(40) not null

 

sql server 学习笔记

标签:res   pre   修改   div   添加   学习   log   table   varchar   

原文地址:http://www.cnblogs.com/eager/p/sql.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!