码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis like 转义,遍历List

时间:2020-06-05 21:22:56      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:ram   span   bsp   where   cat   mapper   open   type   tis   

mybatis.xml 中

模糊查询

<if test="studentName != null and studentName !=‘‘ ">
    AND stu.student_name LIKE concat(concat("%",#{studentName}),"%")
</if>

 

遍历list:

ClassTrainrelMapper.java

List<ClassTrainRel> queryTrainByIds(@Param("trainIds") List<Integer> trainIds);

 

ClassTrainrelMapper.xml

<select id="queryTrainByIds" resultType="cn.rc.api.entity.ClassTrainRel">
        SELECT
        *
        FROM
        t_class_train_rel
        WHERE
        status = 0
        AND delete_flag = 0
        AND id IN
        <foreach item="item" index="index" collection="trainIds"
                 open="(" separator="," close=")">
            #{item}
        </foreach>
    </select>

 

mybatis like 转义,遍历List

标签:ram   span   bsp   where   cat   mapper   open   type   tis   

原文地址:https://www.cnblogs.com/wanjun-top/p/13051547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!