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

mybatis 避免 where 1=1

时间:2020-04-28 15:27:40      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:tle   and   cti   test   HERE   title   ati   rom   auth   

mybatis 避免 where 1=1

mybatis动态拼接条件的两种方式:
  • where 1=1
  • where标签

where标签方式:

<select id="findActiveBlogLike"  resultType="Blog">
    SELECT * FROM BLOG
    <where>
        <if test="state != null">
            state = #{state}
        </if>
        <if test="title != null">
            AND title like #{title}
        </if>
        <if test="author != null and author.name != null">
            AND author_name like #{author.name}
        </if>
    </where>
</select>

 

mybatis 避免 where 1=1

标签:tle   and   cti   test   HERE   title   ati   rom   auth   

原文地址:https://www.cnblogs.com/muzhongjiang/p/12793964.html

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