数据集在公式中怎么写,才能根据日期参数的值相应的加减的日期显示出来
select * from 表
where 日期字段='${datedelta(日期控件名,-1)}'
datedelta(today(),-1)就是返回当前日期前一天的日期,若系统日期是 2011-11-11,则返回值为 2011-11-10
==========
参考日期函数
日期和时间函数概述-https://help.fanruan.com/finereport/doc-view-819.html
=============
如果是取数据集中日期加减,就是
datedelta(ds1.select(日期字段,条件字段=$参数1),-1)---查询出的日期减一天
ds.select()函数参考数据集函数概述-https://help.fanruan.com/finereport/doc-view-850.html