美文网首页
mybatis foreach标签使用

mybatis foreach标签使用

作者: wangxiaoda | 来源:发表于2017-05-03 18:35 被阅读80次

select * from table where id in (1,2,3)
where条件中带in的都可以使用foreach标签

<select id="getTeachers" resultMap="BaseResultMap">
    select
    <include refid="Base_Column_List" />
    from famous_teacher_recommend
    where category in
    <foreach collection="array" index="index" item="category" open="(" separator="," close=")">
      #{category}
    </foreach>
    ORDER BY category
</select>

相关文章

网友评论

      本文标题:mybatis foreach标签使用

      本文链接:https://www.haomeiwen.com/subject/rfmwgttx.html