MyBatis mapper文件 中in的写法(postgresql)
本文档记录postgresql数据库,在mybatis中,对于in语法及传参的写法。
<if test="studentsIds != null">
and student_id in
<foreach item="item" index="index" collection="studentsIds"
open="(" separator="," close=")">
#{item}
</foreach>
</if>
注:studentsIds 为List<String> 集合