标签: db2
我需要在DB2环境中获取最近2个月的数据,查询是什么?日期正在发生变化,因此,它必须是动态的。
答案 0 :(得分:0)
如果您想获得动态插入的最新日期,请执行以下操作
select * from ur_table where urdate between (select max(urdate)- 2 months from urtable) and (select max(urdate) from urtable)