下拉树作为查询条件的问题

创建1个下拉树,数据集都做好了,然后用它作为查询条件,xxx where 1=1 ${if(len(locationIds)==0,""," and id in ("+locationIds+")")} )

但是我下拉树选择2个节点时候,

debug时候sql语句生产下面的

where 1=1  and id in (100), and id in (101) )

而且不是我们想要的where 1=1  and id in (100,101)

FineReport FR学习路上的树懒 发布于 2022-5-23 22:50
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
15922204585Lv6高级互助
发布于2022-5-23 23:08

试试:${if(len(locationIds)=0,"","and id in ('"+SUBSTITUTE(locationIds,",","','")+"')")}

参考:多选下拉树实现多值查询-https://help.fanruan.com/finereport/doc-view-2377.html

  • 2关注人数
  • 310浏览人数
  • 最后回答于:2022-5-23 23:08
    请选择关闭问题的原因
    确定 取消
    返回顶部