817的
ALTER TABLE emp RENAME TO employee;

解决方案 »

  1.   

    create table newName(.....,newColName) 
        as select ..... from oldName;drop table oldName;
      

  2.   

    修改表名:rename table1 to table2;
    修改子段属性:
    alter table talbe1
    modify (col1 datatype);修改子段名:
    alter table table1
    drop (col1);alter table table1
    add (col11 datatype);
      

  3.   

    修改表名:rename table1 to table2;
    修改子段名:alter table table1
               drop (col1);
       
               alter table table1
               add (col11 datatype);