mybatis like 转义,遍历List
Posted 小污龟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis like 转义,遍历List相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章