标签:from rom time oracle 语句 int 数据库 into select
删除数据后最好不要进行其他无关操作
①确定删除数据的时间
②此语句找出删除的数据:select * from 表名 as of timestamp to_timestamp(‘删除时间点‘,‘yyyy-mm-dd hh24:mi:ss‘)
③删除的数据重新插入原表:insert into 表名 (select * from 表名 as of timestamp to_timestamp(‘删除时间点‘,‘yyyy-mm-dd hh24:mi:ss‘));
要保证主键不重复。
标签:from rom time oracle 语句 int 数据库 into select
原文地址:http://www.cnblogs.com/DesignerFly/p/7379797.html