搜索控件使用的是 文本域控件,在输入多个值后,报错:
数据集 [ds1] 配置错误ORA-00920: 无效的关系运算符
SQL传参语句 ${if(len(student)==0,"","and "+CC.student+" in ('" +student,"\n","','"+ "')")}
直接
${if(len(student)==0,"","and CC.student in ('" +student,"\n","','"+ "')")}
里面 CC.student 不用拼接
=============
${if(len(student)==0,"","and CC.student in ('" +replace(student,"\n","','")+"')")}