mybatis动态sql中的trim标签的使用

mybatis动态sql中的trim标签的使用

<select id="findActiveBlogLike"
     resultType="Blog">
  SELECT * FROM BLOG
  <trim prefix="WHERE" prefixoverride="AND|OR">
    <if test="state != null">
        AND 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>
  </trim>
</select>

都不为null的话sql语句为:SELECT * FROM BLOG where AND state= 'xx' and title like 'xx' AND author_name like 'xx' 在红色删除线的第一个AND是不存在的,上面两个属性的意思如下:

prefix :前缀

prefixOverrides :去掉第一个AND或者是OR

<update id="updateAuthorIfNecessary">
  update Author
  <trim prefix="SET" suffixOverrides="," suffix=" where id = #{id} ">
      <if test="username != null">username=#{username},</if>
      <if test="password != null">password=#{password},</if>
      <if test="email != null">email=#{email},</if>
      <if test="bio != null">bio=#{bio},</if>
  </trim>
</update>

都不为null的话sql语句为:update Author SET username = 'xx',password='xx',email='xx',bio='xx' , where id = 'xx' 在红色删除线是不存在逗号的,而且自动加了一个SET前缀和WHERE后缀,上面三个属性的意义如下:

prefix :前缀

suffixoverride :去掉最后一个逗号(也可以是其他的标记,就像是上面前缀中的AND一样)

suffix :后缀

=====>mybatis

posted @   EmptyJar  阅读(85)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
点击右上角即可分享
微信分享提示