下拉控件允许最大行是1000,怎么调整,目前版本是9.0
${if(len(员工编码)==0,"" ,if(len(员工编码)>1000,"" ,"and 员工编码 in ('"+员工编码+"')"))}
下拉框数据集字典,数据集里面限制啊
直接在sql里面取前20就可以
mssql:select top 20 * from 表 order by zje
mysql:select * from 表 order by zje limit 20
Oracle:select * from (select * from 表 order by zje) where rownum<=20 order by rownum asc
是下拉框返回值最多1000个吧
Oracle多值查询参数个数限制-https://help.fanruan.com/finereport/doc-view-2066.html
oracle有限制
https://help.fanruan.com/finereport/doc-view-2066.html
我个人是建议换成模糊查询