1.查詢之前某一時間的數據信息
select * from bt_mb_new as of timestamp to_timestamp('2020-11-28 20:00:00','yyyy-mm-dd hh24:mi:ss');
bt_mb_new :表名
2020-11-28 20:00:00 :要回退到的時間
2.啟用行移動功能
alter table bt_mb_new enable row movement;
3.執行閃回語句
flashback table bt_mb_new to timestamp to_timestamp('2020-11-28 20:00:00','yyyy-mm-dd hh24:mi:ss');