查询以获取DB2中上个月的数据

时间:2017-06-26 12:52:38

标签: db2

我需要在DB2环境中获取最近2个月的数据,查询是什么?日期正在发生变化,因此,它必须是动态的。

1 个答案:

答案 0 :(得分:0)

如果您想获得动态插入的最新日期,请执行以下操作

select * from ur_table where urdate between (select max(urdate)- 2 months from urtable) and (select max(urdate) from urtable)