码迷,mamicode.com
首页 > 数据库 > 详细

mybatis动态SQL之where标签

时间:2020-10-18 17:10:41      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:null   class   XML   开发   ram   type   find   res   ESS   

mybatis动态SQL之where标签

为了简化 where 1=1 的条件拼装,我们可以采用where标签来简化开发

<!-- 根据用户信息查询 -->
<select id="findByUser" resultType="user" parameterType="user"> 
   select * from user
    <where> 
    	<if test="username!=null and username != ‘‘ ">
   			 and username like #{username}
    	</if> 
         <if test="address != null">
   			 and address like #{address}
    	</if>
    </where>
</select>

mybatis动态SQL之where标签

标签:null   class   XML   开发   ram   type   find   res   ESS   

原文地址:https://www.cnblogs.com/Y-wee/p/13835156.html

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