摘要: --修改表创建表之后觉得表的结构不合理,那就需要对表进行修改,修改表结构就是在表中添加列、删除列、更新列。使用alter table 语句修改表的结构。create table student( stuid number(6), stuname varchar2(6), stusex varchar2(2)) 阅读全文
posted @ 2011-01-04 15:05 Me疯子_(~ 阅读(140) 评论(0) 推荐(0) 编辑
摘要: --修改表创建表之后觉得表的结构不合理,那就需要对表进行修改,修改表结构就是在表中添加列、删除列、更新列。使用alter table 语句修改表的结构。create table student(stuid number(6),stuname varchar2(6),stusex varchar2(2))(1)增加列alter table studentadd studept varchar2(20)在student表中添加了 student列,数据类型是varchar2(2)更新列alter table studentmodify stuname varchar2(20)在student表中更 阅读全文
posted @ 2011-01-04 13:26 Me疯子_(~ 阅读(663) 评论(0) 推荐(0) 编辑