摘要: 1.在表emp中新增字段sexy(性别) alter table emp add sexy varchar2(2); 新增多个字段cxx 和shoneworn altertable emp add(cxx varchar(2),shoneworn varchar(2));2.在表emp中删除一个字段 sexy alter table emp drop column sexy; 删除多个字段 alter table emp drop (cxx, shoneworn);3.修改字段名 alter table emp rename columnold_columnname to new_name; 阅读全文
posted @ 2013-12-16 10:51 shoneworn 阅读(2099) 评论(0) 推荐(0) 编辑