|
|

楼主 |
发表于 2012/3/17 00:10:46
|
显示全部楼层
我一般采用数据列中通过函数判断
本期数据 between ?start_date? and ?stop_date?
上月同期 between _add_months(?start_date?,-1) and _add_months(?stop_date?,-1)
上年同期 between _add_year(?start_date?,-1) and _add_year(?stop_date?,-1)
在一个查询中过滤为
xxx between ?start_date? and ?stop_date?
or
xxx between _add_months(?start_date?,-1) and _add_months(?stop_date?,-1)
or
xxx between _add_year(?start_date?,-1) and _add_year(?stop_date?,-1)
另外,公历的比较还是比较容易的,我最怕的是农历同比、环比,没有现成的函数可使用,各位同学有没有什么好方法。 |
|