在mybatis中 从action中传一串字符串,然后在xml中的sql语句中 字段 in #{}行不行

兄弟们有没有人讲详细点的,我想教一下,在mybatis中 从action中传一串字符串,然后在xml中的sql语句中 字段 in #{}行不行
最新回答
春杞忆童言

2024-11-05 00:10:28

字符串不行,数组或者集合才可以
<foreach item="item" index="index" collection="ids" open="("separator="," close=")">
#{item}
</foreach>