--使用闪回查询获取丢失的行

select *
from sys_user as of timestamp to_timestamp('2017-11-22 17:55:00', 'yyyy-mm-dd hh24:mi:ss')
where name = 'lee';

--使用闪回查询还原丢失的行

insert into sys_user
(select *
from sys_user as of timestamp to_timestamp('2017-11-22 17:55:00', 'yyyy-mm-dd hh24:mi:ss')
where name = 'lee');

相关文章:

  • 2022-01-26
  • 2021-06-26
  • 2021-05-27
  • 2021-08-14
  • 2021-06-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-20
  • 2021-04-19
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2021-08-23
相关资源
相似解决方案