mybatis模糊查询

Posted 雪山上的蒲公英

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis模糊查询相关的知识,希望对你有一定的参考价值。

原先查询片段如下,自动生成的代码默认只能全字段匹配查询

 <if test="hobby != null and hobby != ‘‘">
       and HOBBY = #{hobby}
 </if>
 <if test="code != null and code != ‘‘">
       and CODE = #{code}
 </if>

现要对code字段的值实现模糊查询,如下

 <if test="hobby != null and hobby != ‘‘">
        and HOBBY = #{hobby}
 </if>
 <if test="code != null and code != ‘‘">
        and CODE like concat(concat(‘%‘,#{code}),‘%‘) 
 </if>

 

以上是关于mybatis模糊查询的主要内容,如果未能解决你的问题,请参考以下文章

mybatis模糊查询防止SQL注入

mybatis参数date怎么模糊查询

mybatis-plus模糊查询

Mybatis,模糊查询语句,以及传参数的正确写法

java mybatis 分页模糊查询页面怎么写

mybatis中的模糊查询