alter table tbname add col_name col_type;
alter table tbname modify (colname col_type);
alter table tbname drop column colname;

解决方案 »

  1.   

    alter table tabname rename column colname1 to colname2;
    rename tablename1 to tablename2;
      

  2.   

    注: lialin(阿林) 的“alter table tabname rename column colname1 to colname2;”
    仅在9i以上版本使用
      

  3.   

    增加字段
    alter table table_name add (col_name col_type)修改字段参数
    alter table table_name modify(col_name col_type)修改字段名
    alter table table_name rename column column1 to column2
    仅在9i以上版本使用删除一个字段
    dalter table table_name drop column col_name
    删除多个字段
    alter table table_name drop (col_name1,col_name2,....)