做数据处理的时候,删掉数据之后开发又来要数据,用如下语句可以恢复n分钟前的数据,可以用where之类的语句筛选具体查询内容:

select * from 表名 as of timestamp sysdate - n/1440
where 字段 = ' '

 

 

 

参考文档:https://blog.csdn.net/liugw_768/article/details/106499361