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的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis Like查询处理%_符号

mybatis的foreach怎么解决in参数大于1000

mybatis数组和List遍历

mybatis中decode写法么

Mybatis 的 foreach 批量模糊 like 查询及批量插入

Mybatis 的 foreach 批量模糊 like 查询及批量插入