我使用$(Start_Date)
和$(end_date )
作为参数,他们有一个默认值来显示上个月的开始和结束日期。
我想通过使用SQL查询而不是直接在报告中从开始日期和结束日期中减去1年?
答案 0 :(得分:0)
在SQL查询中(从“设计”视图中,单击“数据集和查询编辑器”图标):
Select
... date_sub($(Start_Date), interval 1 year)... ,
...date_sub($(end_date ), interval 1 year)...
from ...
;