我的方法如下:
查询到指定时间段的数据,再把查询到的数据复制到原来的表中。
insert into tableName select * from (select * from tableName as of timestamp to_timestamp('2019-10-15 11:30:00','YYYY-MM-DD HH24:MI:SS')
) t where t.字段名称='查询条件'
我的方法如下:
查询到指定时间段的数据,再把查询到的数据复制到原来的表中。
insert into tableName select * from (select * from tableName as of timestamp to_timestamp('2019-10-15 11:30:00','YYYY-MM-DD HH24:MI:SS')
) t where t.字段名称='查询条件'