标签: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
标签:res pre 修改 div 添加 学习 log table varchar
原文地址:http://www.cnblogs.com/eager/p/sql.html