数据集
里面日期参数
筛选条件不选的的时候为空,显示所有值,传了就根据传的值去筛选,日期为处理过的字符串
参考:https://help.fanruan.com/finereport/doc-view-2394.html?source=4##5
where 1=1 ${if(len(日期参数)!=0,"","and 日期字段 = '"+日期参数+"'")}
或者
where 日期字段 like '${日期参数}'+'%'
select * from 表 where 1=1 ${if(len(日期控件名)==0,""," and 日期="'+日期控件名+'"")}