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

mybatis的模糊查询格式

时间:2017-11-09 19:44:54      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:map   cat   user   and   模糊   mybatis   where   from   char   

mybatis的模糊查询格式;

  <select id="xxx"  parameterType="com.model.xxx"   resultMap="BaseResultMap">
        select * from users WHERE 1=1
        <if test="name != null and name != ‘‘" >
           and name like CONCAT(‘%‘,#{name,jdbcType=VARCHAR},‘%‘)
        </if>
        
        <if test="identity != null and identity != ‘‘" >
           and identity like CONCAT(‘%‘,#{identity,jdbcType=VARCHAR},‘%‘)
        </if>
        
        <if test="phon != null and phon != ‘‘" >
           and phon like CONCAT(‘%‘,#{phon,jdbcType=VARCHAR},‘%‘)
        </if>
  </select>

 

mybatis的模糊查询格式

标签:map   cat   user   and   模糊   mybatis   where   from   char   

原文地址:http://www.cnblogs.com/YLQBL/p/7810903.html

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