====================Oracel12C 通过日志回滚数据========================
----1. 查询该时间段 这个表的状态
select name,account,ADDRESS from S_PERSON as of timestamp TO_TIMESTAMP('2022-12-22 14:02:00', 'yyyy-mm-dd hh24:mi:ss') where NAME='张三';
----2. 开启闪回
alter table S_PERSON enable row movement;
----3. 把表的状态闪回到这个时间段
flashback table S_PERSON to timestamp TO_TIMESTAMP('2022-12-22 14:02:00', 'yyyy-mm-dd hh24:mi:ss');
----4. 用完记得关闭闪回
alter table S_PERSON disable row movement ;