|
AND rwc.item_code in (
<#assign x >
<#list itemCodes as itemCode>
${itemCode}
<#if itemCode_has_next>,</#if>
</#list>
</#assign>
${x}
)
这样出来的数据为 AND rwc.item_code in ('a,b'),查询不出数据
如果修改为’${itemCode}' 之后 AND rwc.item_code in ('’a‘,’b‘'),请问怎么去掉最外面的'' 单引号呀!
|
|