双层嵌套if,该怎么写啊

${if(checkBox="true",

"and a.sign_date is null",

if(len(starttime) =0 ,"","and to_char(a.sign_date,'yyyy-MM-dd') >= '"+ starttime+"'") 

if(len(endtime) =0 ,"","and to_char(a.sign_date,'yyyy-MM-dd') <= '"+ endtime+"'"))}


吴浩 发布于 2019-3-12 11:25
1min目标场景问卷 立即参与
回答问题
悬赏:4 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共3回答
最佳回答
0
flyingsnakeLv6资深互助
发布于2019-3-12 11:27(编辑于 2019-3-12 11:29)

${if(checkBox="true","and a.sign_date is null",if(len(endtime) =0 ,"","and to_char(a.sign_date,'yyyy-MM-dd') <= '"+ endtime+"'")}



${if(checkBox="true","and a.sign_date is null",if(len(starttime) =0 ,"","and to_char(a.sign_date,'yyyy-MM-dd') >= '"+ starttime+"'") }



最佳回答
0
黄源Lv6中级互助
发布于2019-3-12 11:38(编辑于 2019-3-12 11:39)

${if(checkBox="true",

" and a.sign_date is null",

if(len(starttime) =0 || len(endtime) =0,

if(len(endtime) =0 ,

" and to_char(a.sign_date,'yyyy-MM-dd') >= '"+ starttime+"'"

," and to_char(a.sign_date,'yyyy-MM-dd') <= '"+ endtime+"'")

," and to_char(a.sign_date,'yyyy-MM-dd') >= '"+ starttime+"' and to_char(a.sign_date,'yyyy-MM-dd') <= '"+ endtime+"'") 

)}


最佳回答
0
axingLv6专家互助
发布于2019-3-12 11:45
${if(checkBox="true","and a.sign_date is null",if(len(endtime) =0 ,"","and to_char(a.sign_date,'yyyy-MM-dd') <= '"+ endtime+"'"))}
${if(checkBox="true","and a.sign_date is null",if(len(starttime) =0 ,"","and to_char(a.sign_date,'yyyy-MM-dd') >= '"+ starttime+"'")) }


  • 5关注人数
  • 1018浏览人数
  • 最后回答于:2019-3-12 11:45
    请选择关闭问题的原因
    确定 取消
    返回顶部