IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> MyBatis动态sql -> 正文阅读

[大数据]MyBatis动态sql

这篇文章介绍了MyBatis-动态sql


动态 SQL 是 MyBatis 的强大特性之一。例如拼接时要确保不能忘记添加必要的空格,还要注意去掉列表最后一个列名的逗号。利用动态 SQL,可以彻底摆脱这种痛苦。

一.标签

if标签:条件判断
choose、when、otherwise标签:选择
trim、where、set标签
foreach标签: 遍历集合
sql、include标签:定义、使用代码片段

二.动态sql语句

准备

Student类,数据库中与之对应

package com.hem.pojo;

public class Student {
    private Integer id;
    private String name;
    private String email;
    private Integer age;

    @Override
    public String toString() {
        return "Student{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", email='" + email + '\'' +
                ", age=" + age +
                '}';
    }

    public Student(String name, String email, Integer age) {
        this.name = name;
        this.email = email;
        this.age = age;
    }

    public Student(Integer id, String name, String email, Integer age) {
        this.id = id;
        this.name = name;
        this.email = email;
        this.age = age;
    }

    public Student() {
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}

1.查询

1.1多条件动态查询

使用< where > + < if >
if进行条件判断,where 可以去掉多余的and

示例
StudentMapper接口:

package com.hem.mapper;

import com.hem.pojo.Student;

import java.util.List;

public interface StudentMapper {

    List<Student> selectDynamic(Student student);
}

StudentMapper.xml文件:

<select id="selectDynamic" resultType="student">
        select id,name,email,age
        from student
        <where>
            <if test=" name != null and name != '' ">
                name like concat('%',#{name},'%')
            </if>
            <if test=" email != null and email != '' ">
                and email like concat('%',#{email},'%')
            </if>
            <if test=" age != null ">
                and age = #{age}
            </if>
        </where>;
    </select>

测试类:

    @Test
    public void testinsertDynamic() throws IOException {
        InputStream in = Resources.getResourceAsStream("SqlMapConfig.xml");
        SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(in);
        SqlSession sqlSession = factory.openSession();

//        获取StudentMapper接口的代理对象
        StudentMapper studentMapper = sqlSession.getMapper(StudentMapper.class);
        Student student = new Student("小","1",18);
        List<Student> list = studentMapper.selectDynamic(student);
        list.forEach(student1 -> System.out.println(student1));
        sqlSession.close();
    }

测试结果:
在这里插入图片描述

1.2单条件-多条件动态查询(从多条件中选一个进行查询)

使用< where >,< choose >,< when >
choose:相当于switch
when:相当于case

示例
StudentMapper接口:

public interface StudentMapper {
    List<Student> selectByCondition(Student student);
}

StudentMapper.xml:

<select id="selectByCondition" resultType="student">
        select id,name,email,age
        from student
        <where>
            <choose>  <!-- 相当于switch -->
                <when test="age != null"> <!-- 相当于case -->
                    age = #{age}
                </when>
                <when test="name != null and name!='' ">
                    and name like concat('%',#{name},'%')
                </when>
                <when test="email != null and email!='' ">
                    and email like concat('%',#{email},'%')
                </when>
            </choose>;
        </where>
    </select>

2.修改

使用< set> + < if >
if进行条件判断,set可以去掉多余的逗号’ , ’

示例
StudentMapper接口:

package com.hem.mapper;

import com.hem.pojo.Student;

import java.util.List;

public interface StudentMapper {
    int updateDynamic(Student student);
}

StudentMapper.xml文件:

    <update id="updateDynamic" parameterType="student">
        update student
        <set>
            <if test=" name != null and name != '' ">
                name = #{name},
            </if>
            <if test=" email != null and email != '' ">
                email = #{email},
            </if>
            <if test=" age != null ">
                age = #{age},
            </if>
        </set>
        where id = #{id};
    </update>

3.定义使用代码片段

< sql >:定义代码片段
< include >:使用代码片段

<!--    定义代码片段-->
    <sql id="allColumns">
        id,name,email,age
    </sql>
    
<!--    使用代码片段-->
   <include refid="allColumns"/>

例子

    <sql id="allColumns">
        id,name,email,age
    </sql>
    
<select id="selectAll" resultType="student">
        select <include refid="allColumns"/>
        from student;
    </select>

202210162215日

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-10-17 12:41:07  更:2022-10-17 12:43:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/18 8:21:47-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码