我想迁移或编写等效查询以在PostgreSQL当前时间之前一小时从表中获取数据。
oracle查询:
select *
from T_DATA as of timestamp (systimestamp - interval '60' minute);
答案 0 :(得分:0)
select * from T_DATA where timestamp_column >= now() - interval '1 hour'
答案 1 :(得分:0)
由于Postgresql不支持闪回查询,因此我尝试了时态表扩展的一种方法。