参数主法求助

我在最后的where要添加一个参数,但是一直不行。它只会出来一个参数。不知道哪里出错了,就是用户录入时间的年月日后,我自己在开始与结束时间分别让它添加上时分秒。但是一直只有end_date出来。start_date不出来


我是这样写的:


  ${if(len(start_date) == 0,"","and t.f_jysj between" + '${start_date+" 00:00:00"}'

+" and " + '${end_date+" 23:59:59"}')}


FineReport CD20160914 发布于 2020-11-4 15:20
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
zsh331Lv8专家互助
发布于2020-11-4 15:23
${if(len(start_date) == 0,""," and t.f_jysj between '" + start_date + " 00:00:00'" + " and '"+end_date+" 23:59:59'")}


最佳回答
0
cherishdqyLv7高级互助
发布于2020-11-4 15:24

${if(len(start_date) == 0,""," and t.f_jysj between '" + start_date + " 00:00:00' and '" + end_date + " 23:59:59'")}


  • 3关注人数
  • 332浏览人数
  • 最后回答于:2020-11-4 15:24
    请选择关闭问题的原因
    确定 取消
    返回顶部