1.添加一个字段
alter table 【表名】 add (【字段名】 varchar2(20));
comment on column 【表名】.【字段名】 is '【备注】';
2.删除一个字段
ALTER TABLE 【表名】 DROP(【字段名】);
3.修改字段属性
alter table 【表名】 modify 【字段名】 【类型】(【长度】) ;
4.修改字段名
alter table 【表名】 rename column 【原字段名】 to 【新字段名】 ;
转载于:https://www.cnblogs.com/tongrui/p/6376252.html