MyBatis查询数据库(4)

简介: MyBatis查询数据库(4)

复杂情况:动态SQL使用🍭

动态 SQL 是Mybatis的强大特性之⼀,能够完成不同条件下不同的 SQL 拼接。 可以参考官方文档:mybatis – MyBatis 3 | 动态 SQL

一、< if>标签🍭

在注册用户的时候,可能会有这样⼀个问题,有的信息是必填,有的是选填,那如果在添加⽤户的时候有不确定的字段传入,程序应该 如何实现呢?

这个时候就需要使用动态标签 < if> 来判断了,比如添加的时候性别 sex 为非必填字段,具体实现如下:


<insert id="insert">
        insert into user(
        username,
        password,
        <if test="sex != null">
            sex,
        if>
        birthday,
        head
        ) values (
        #{username},
        #{password},
        <if test="sex != null">
            #{sex},
        if>
        #{birthday},
        #{head}
        )
    insert>

需要注意 test 中的 sex,是传入对象中的属性,不是数据库字段。而且if标签都是成对出现的

二、< trim>标签🍭

之前的插入用户功能,只是有⼀个 sex 字段可能是选填项,如果所有字段都是非必填项,就考虑使用< trim>标签结合< if>标签,对多个字段都采取动态生成的方式。

< trim>标签中有如下属性:

  • prefix:表示整个语句块,以prefix的值作为前缀
  • suffix:表示整个语句块,以suffix的值作为后缀
  • prefixOverrides:表示整个语句块要去除掉的前缀
  • suffixOverrides:表示整个语句块要去除掉的后缀

调整 UserMapper.xml 的插入语句为:


<insert id="insert">
        insert into user
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="username != null">
                username,
            if>
            <if test="password != null">
                password,
            if>
            <if test="sex != null">
                sex,
            if>
            <if test="birthday != null">
                birthday,
            if>
            <if test="head != null">
                head,
            if>
            <if test="createTime != null">
                create_time,
            if>
        trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="username != null">
                #{username},
            if>
            <if test="password != null">
                #{password},
            if>
            <if test="sex != null">
                #{sex},
            if>
            <if test="birthday != null">
                #{birthday},
            if>
            <if test="head != null">
                #{head},
            if>
            <if test="createTime != null">
                #{createTime},
            if>
        trim>
    insert>

在以上 sql 动态解析时,会将第⼀个

  • 基于 prefix 配置,前缀部分加上 (
  • 基于 suffix 配置,后缀部分加上 )
  • 多个 < if>组织的语句都以 , 结尾,在最后拼接好的字符串还会以 , 结尾,会基于 suffixO verrides 配置去掉最后⼀个 ,
  • 注意 < if test=“createTime != null”> 中的 createTime 是传入对象的属性,不是数据库字段

三、标签🍭

传入的用户对象,根据属性做 where 条件查询,用户对象中属性不为 null 的,都为查询条件。如user.username 为 "a",则查询条件为 where username="a":

UserMapper:


List selectByCondition(User user);

UserMapper.xml:


<select id="selectByCondition" parameterType="com.example.ssmdemo1.entity.Userinfo" resultMap="baseMap">
        select id, username, password, nickname, sex, birthday, head, create_time from user
        <where>
            <if test="username != null">
                and username=#{username}
            if>
            <if test="password != null">
                and password=#{password}
            if>
            <if test="sex != null">
                and sex=#{sex}
            if>
            <if test="birthday != null">
                and birthday=#{birthday}
            if>
            <if test="head != null">
                and head=#{head}
            if>
            <if test="createTime != null">
                and create_time=#{createTime}
            if>
        where>
    select>

以上标签也可以使用 替换,中间的if标签代码不需要变。

四、标签🍭

根据传入的用户对象属性来更新用户数据,可以使用标签来指定动态内容。

UserMapper 接口中修改用户方法:根据传入的用户 id 属性,修改其他不为 null 的属性:


int updateById(User user);

UserMapper.xml 中添加更新用户 SQL:


<update id="updateById" parameterType="com.example.ssmdemo1.entity.Userinfo">
        update user
        <set>
            <if test="username != null">
                username=#{username},
            if>
            <if test="password != null">
                password=#{password},
            if>
            <if test="sex != null">
                sex=#{sex},
            if>
            <if test="birthday != null">
                birthday=#{birthday},
            if>
            <if test="head != null">
                head=#{head},
            if>
            <if test="createTime != null">
                create_time=#{createTime},
            if>
        set>
        where id=#{id}
    update>

以上标签也可以使用  替换。

五、标签🍭

对集合进⾏遍历时可以使用该标签。标签有如下属性:

  • collection:绑定方法参数中的集合,如 List,Set,Map或数组对象
  • item:遍历时的每⼀个对象
  • open:语句块开头的字符串
  • close:语句块结束的字符串
  • separator:每次遍历之间间隔的字符串

示例:根据多个文章 id 来删除文章数据。

ArticleMapper 中新增接口方法:


int deleteByIds(List ids);

ArticleMapper.xml 中新增删除 SQL:


<delete id="deleteByIds">
        delete from article where id in
        <foreach collection="list" item="item" open="(" close=")" separator=",">
            #{item}
        foreach>
    delete>

单元测试代码,删除id为5和6的用户:


@Test
    void deleteByIds() {
        List ids=new ArrayList<>();
        ids.add(5);
        ids.add(6);
        int result=userMapper.deleteByIds(ids);
        System.out.println("删除:"+result);
    }

六、choose-when-otherwise🍭

类似于Java中的switch语句,根据不同条件选择不同的SQL片段。


<select id="getUserList" resultType="User">
  SELECT * FROM users
  <where>
    <choose>
      <when test="status != null">
        AND status = #{status}
      when>
      <when test="name != null and name != ''">
        AND name = #{name}
      when>
      <otherwise>
        AND active = 1
      otherwise>
    choose>
  where>
select>

动态SQL是MyBatis的一个重要特性,它允许你在SQL语句中根据条件动态地添加、修改或删除语句片段,以便更灵活地构建SQL查询和更新操作。

上面这些示例只是MyBatis动态SQL的一小部分用法。你可以根据自己的需求和情况,结合使用这些特性来构建更灵活、可维护的数据库操作语句。记得阅读MyBatis的官方文档以深入了解动态SQL的更多用法和细节。




相关文章
|
18天前
|
XML Java 数据库连接
Mybatis实现RBAC权限模型查询
通过对RBAC权限模型的理解和MyBatis的灵活使用,我们可以高效地实现复杂的权限管理功能,为应用程序的安全性和可维护性提供有力支持。
52 5
|
2月前
|
SQL Java 数据库连接
深入 MyBatis-Plus 插件:解锁高级数据库功能
Mybatis-Plus 提供了丰富的插件机制,这些插件可以帮助开发者更方便地扩展 Mybatis 的功能,提升开发效率、优化性能和实现一些常用的功能。
319 26
深入 MyBatis-Plus 插件:解锁高级数据库功能
|
1月前
|
存储 缓存 网络协议
数据库执行查询请求的过程?
客户端发起TCP连接请求,服务端通过连接器验证主机信息、用户名及密码,验证通过后创建专用进程处理交互。服务端进程缓存以减少创建和销毁线程的开销。后续步骤包括缓存查询(8.0版后移除)、语法解析、查询优化及存储引擎调用,最终返回查询结果。
29 6
|
1月前
|
SQL Java 数据库连接
spring和Mybatis的各种查询
Spring 和 MyBatis 的结合使得数据访问层的开发变得更加简洁和高效。通过以上各种查询操作的详细讲解,我们可以看到 MyBatis 在处理简单查询、条件查询、分页查询、联合查询和动态 SQL 查询方面的强大功能。熟练掌握这些操作,可以极大提升开发效率和代码质量。
73 3
|
2月前
|
SQL 安全 Java
MyBatis-Plus条件构造器:构建安全、高效的数据库查询
MyBatis-Plus 提供了一套强大的条件构造器(Wrapper),用于构建复杂的数据库查询条件。Wrapper 类允许开发者以链式调用的方式构造查询条件,无需编写繁琐的 SQL 语句,从而提高开发效率并减少 SQL 注入的风险。
44 1
MyBatis-Plus条件构造器:构建安全、高效的数据库查询
|
1月前
|
SQL JavaScript 程序员
数据库LIKE查询屡试不爽?揭秘大多数人都忽视的秘密操作符!
本文分析了因数据库中的不可见空白字符导致的数据查询问题,探讨了问题的成因与特性,并提出了使用 SQL 语句修复问题的有效方案。同时,总结了避免类似问题的经验和注意事项。
33 0
|
2月前
|
存储 缓存 固态存储
怎么让数据库查询更快
【10月更文挑战第28天】
43 2
|
2月前
|
存储 缓存 关系型数据库
怎么让数据库查询更快
【10月更文挑战第25天】通过以上综合的方法,可以有效地提高数据库查询的速度,提升应用程序的性能和响应速度。但在优化过程中,需要根据具体的数据库系统、应用场景和数据特点进行合理的调整和测试,以找到最适合的优化方案。
|
2月前
|
JSON JavaScript 关系型数据库
node.js连接GBase 8a 数据库 并进行查询代码示例
node.js连接GBase 8a 数据库 并进行查询代码示例
|
2月前
|
监控 关系型数据库 MySQL
数据库优化:MySQL索引策略与查询性能调优实战
【10月更文挑战第27天】本文深入探讨了MySQL的索引策略和查询性能调优技巧。通过介绍B-Tree索引、哈希索引和全文索引等不同类型,以及如何创建和维护索引,结合实战案例分析查询执行计划,帮助读者掌握提升查询性能的方法。定期优化索引和调整查询语句是提高数据库性能的关键。
375 1