我将MinLoginTime和MaxLoginTime存储在2个globalmap变量中:
globalMap.put("MinLoginTime","2017-10-24") //ignore the datetime format, but it a date
globalMap.put("MaxLoginTime","2018-04-26")
我想要按月进行迭代并获取记录。即我们在这里看到有7个月的例子:10,11,12,1,2,3,4
我想生成这些日期:
FromDate ToDate
2017-10-01 2017-10-31
2017-11-01 2017-11-30
2017-12-01 2017-12-31
...
2018-04-01 2018-04-30
然后,需要迭代这些行中的每一行并执行某些操作(现在让我们使用tLog)
有人可以帮助我们在这里使用什么Talend组件来生成日期范围,存储它们的位置以及如何迭代它们来做某事吗?