一条数据:
alter table 表名 enable row movement; //行移动
flashback table 表名 to timestamp sysdate-1; //当前日期-1
alter table 表名 disable row movement; //禁止行移动
改变列名:
alter table 表名 rename column 旧名 to 新名;
改变列类型:
alter table 表名 modify 列名 新类型;
复制表结构: create table table_name_new as select * from table_name_old where 1=2;