不管什么数据库先给之前得数据拉下来
这个是查询十五分钟前表得数据拉下来
select * from 表名 as of timestamp (systimestamp - interval ''15'' minute)
oracle的话有闪回功能
查询该时间段 这个表的状态
select * from 表名 as of timestamp to_timestamp('2019-05-24 13:00:00', 'yyyy-mm-dd hh24:mi:ss');
开启闪回
alter table 表名 enable row movement;
把表的状态闪回到这个时间段
flashback table 表名 to timestamp to_timestamp('2020-12-21 10:29:00','yyyy-mm-dd hh24:mi:ss');
用完记得关闭闪回
alter table 表名 disable row movement