当前位置: 首页 > article >正文

MyBatis动态sql语句

1、if

        if元素可以用于根据条件判断是否包含某个SQL语句片段。

<!--
    查询年龄大于18岁且小于等于30岁的用户信息:
    <if>元素用于判断minAge和maxAge是否为null,
    如果不为null,则将对应的SQL语句片段拼接到最终的SQL语句中
-->
<select id="findUsersByAge" parameterType="Map" resultType="User">
    SELECT *
    from user
    WHERE 1 = 1
    <if test="minAge != null">
        AND age &gt;= #{minAge}
    </if>
    <if test="maxAge != null">
        AND age &lt;= #{maxAge}
    </if>
</select>

2、where元素

        where元素可以用于动态生成where子句,如果所有条件均为null,则不会生成where子句

<!--
    查询用户名和密码匹配的用户信息:
    <where>元素用于动态生成where子句,
    如果username和password均为null,则不会生成where子句
-->
<select id="findUserByUsernameAndPassword" parameterType="Map" resultType="User">
    SELECT *
    FROM user
    <where>
        <if test="username != null">
            AND username = #{username}
        </if>
        <if test="password != null">
            AND password = #{password}
        </if>
    </where>
</select>

3、foreach

        foreach元素可以用于循环遍历一个集合,并将集合中的元素拼接到SQL语句中。

<!-- 
    查询多个用户信息:
    <foreach>元素用于循环遍历List类型的参数,并将集合中的元素拼接到SQL语句中
-->
<select id="findUsersByIds" parameterType="List" resultType="User">
    SELECT *
    FROM user
    WHERE id IN
    <foreach collection="list" item="id" open="(" separator="," close=")">
        #{id}
    </foreach>
</select>

4、choose(when、otherwise)

        choose 相当于 java 里面的 switch 语句。otherwise(其他情况)

<select id="findActiveBlogLike" resultType="Blog">
  SELECT * FROM BLOG WHERE state = ‘ACTIVE’
  <choose>
    <when test="title != null">
      AND title like #{title}
    </when>
    <when test="author != null and author.name != null">
      AND author_name like #{author.name}
    </when>
    <otherwise>
      AND featured = 1
    </otherwise>
  </choose>
</select>

5、trim

        prefix:前缀prefixoverride:去掉第一个and或者是or

select * from test
<trim prefix="WHERE" prefixoverride="AND丨OR">
      <if test="a!=null and a!=' '">AND a=#{a}<if>
      <if test="b!=null and b!=' '">AND a=#{a}<if>
</trim>

6、set

        set 元素主要是用在更新操作的时候,如果包含的语句是以逗号结束的话将会把该逗号忽略,如果set包含的内容为空的话则会出错。

<update id="dynamicSetTest" parameterType="Blog">  
    update t_blog  
    <set>  
        <if test="title != null">  
            title = #{title},  
        </if>  
        <if test="content != null">  
            content = #{content},  
        </if>  
        <if test="owner != null">  
            owner = #{owner}  
        </if>  
    </set>  
    where id = #{id}  
</update> 


http://www.kler.cn/a/158870.html

相关文章:

  • 【Linux学习】【Ubuntu入门】1-4 ubuntu终端操作与shell命令1
  • 【Golang】——Gin 框架中的模板渲染详解
  • OpenSSL 自签名
  • PCB+SMT线上报价系统+PCB生产ERP系统自动化拼板模块升级
  • vuex和pinia的区别
  • <websocket><PLC>使用js和html实现webscoket,与PLC进行socket通讯的实例
  • 手动创建spring bean并注入
  • 详解十大经典排序算法(五):归并排序(Merge Sort)
  • OSPF浅析
  • 3分钟在CentOS 7上离线安装Docker
  • 陪诊系统:基于自然语言处理的患者沟通创新
  • 如何使用 Docker 安装 Node-RED
  • 文件夹批量改名:轻松管理文件夹,随机重命名不求人
  • 线程池,及7大参数,4大拒绝策略
  • uniapp实现拨打电话跳转手机拨号界面 (ios和安卓通用)
  • Python网络爬虫环境的安装指南
  • 《opencv实用探索·十》opencv双边滤波的简单理解
  • 2023年甘肃省职业院校技能大赛(中职教师组)网络安全竞赛样题(一)
  • 【在英伟达nvidia的jetson-orin-nx上使用调试摄像头-同时开启多个摄像头-基础测试(2)】
  • 探索数据之美:深入学习Plotly库的强大可视化
  • pta模拟题(C语言7-26 整除光棍、7-27 稳赢、7-28 查验身份证、7-29 出生年、7-30 点赞)
  • 第2章 知识抽取:概述、方法
  • 【C++】const关键字的详解!!
  • 有权图的最短路径算法
  • 关于“你对SpringCloud的理解”
  • TrustZone之虚拟地址空间