帆软报表怎么处理没有加单引号的字符串数组,例如,查询条件为user_name in('a','b','c'),前端只传了 a,b,c,我需要怎么处理,才能拼接成 in('a','b','c')
${"user_name in ('"+REPLACE("a,b,c",",","','")+"')"}