动态参数问题,现在有个需求,需要根据参数栏的时间范围,计算结束时间7天前的数据,同时通过一个单元格展示出来:
数据集写法:
${if(len(date11)==0,"and ssd.receive_time >= to_timestamp('"+date1+"','yyyy-MM-dd hh24:mi:ss')","and ssd.receive_time >= to_timestamp('"+date11+"','yyyy-MM-dd hh24:mi:ss')")}
${if(len(date22)==0,"and ssd.receive_time <= to_timestamp('"+date2+"','yyyy-MM-dd hh24:mi:ss')","and ssd.receive_time <= to_timestamp('"+date22+"','yyyy-MM-dd hh24:mi:ss')")}
动态参数注入了date11和date22后(公式无效,字符串也无效)“7天前结果”这一列显示的还是date1和date2范围内的数据?
|