Data Access 之 MyBatis(四) - Dynamic SQL(下)

简介: Data Access 之 MyBatis(四) - Dynamic SQL

where,自动去除SQL语句中多余的and

在SQL语句中含有多个if判断条件一旦某一个if判断不满足条件,那么这个SQL语句会多出来一个and,这样就会导致SQL执行报错。

将测试方法中给birthDate赋值的代码注销,再次执行测试

51f3552ba22e43afad5aff507ca591d0_tplv-k3u1fbpfcp-zoom-in-crop-mark_4536_0_0_0.png

这种情况下可以使用where标签,自动去除多余的and,修改SQL语句为

<select id="getTeacherList" resultType="com.citi.entity.Teacher">
    select * from t_teacher
    <where>
        <!--test="",编写判断条件 id!= null,取出传入的JavaBean属性中ID的值,判断是否为空-->
        <if test="id!=null">
            id > #{id}
        </if>
        <if test="className!=null">
            and class_name like #{className}
        </if>
        <if test="birthDate!=null">
            and birth_date &lt; #{birthDate}
        </if>
    </where>
</select>
复制代码

再次执行测试

b47d7bd32c01484797827080cebddadd_tplv-k3u1fbpfcp-zoom-in-crop-mark_4536_0_0_0.png

注销id赋值代码,执行测试

image.png

trim,截取字符串

去掉后面的and,判断条件可能条件前或者条件后出现多余的and,条件前出现多余的and可以使用where标签去除,条件后出现的对于的and where标签无能为力,这时可以使用trim标签

修改SQL语句

<select id="getTeacherList" resultType="com.citi.entity.Teacher">
    select * from t_teacher
    <where>
        <!--test="",编写判断条件 id!= null,取出传入的JavaBean属性中ID的值,判断是否为空-->
        <if test="id!=null">
            id > #{id} and
        </if>
        <if test="className!=null">
            class_name like #{className} and
        </if>
        <if test="birthDate!=null">
            birth_date &lt; #{birthDate} and
        </if>
    </where>
</select>
复制代码

注销测试代码中id和birthDate的赋值代码,执行测试

image.png

修改SQL语句

<select id="getTeacherList" resultType="com.citi.entity.Teacher">
    select * from t_teacher
    <trim prefix="where" suffixOverrides="and">
        <!--test="",编写判断条件 id!= null,取出传入的JavaBean属性中ID的值,判断是否为空-->
        <if test="id!=null">
            id > #{id} and
        </if>
        <if test="className!=null">
            class_name like #{className} and
        </if>
        <if test="birthDate!=null">
            birth_date &lt; #{birthDate} and
        </if>
    </trim>
</select>
复制代码
  • prefix="":前缀,为trim标签包裹的SQL增加一个前缀
  • prefixOverrides="":去除整体字符串前多余的字符
  • suffix="":为整体添加一个后缀
  • suffixOverrides="":去除整体字符串后面多余的字符 再次执行测试

image.png

建议查询条件就放在where标签中,and关键字放在条件前面,一旦条件判断为false,where会自动去除多余的and关键字

foreach,遍历集合

TeacherMapper接口中新增一个方法,根据传入的ids集合查询所有的Teacher

List<Teacher> getTeacherListByIds(@Param("ids")List<Integer> ids);
复制代码

在TeacmerMapper.xml中增加方法的SQL语句

<select id="getTeacherListByIds" resultType="com.citi.entity.Teacher">
    select * from t_teacher where id IN
    <foreach collection="ids" item="id_item" separator="," open="(" close=")">
        #{id_item}
    </foreach>
</select>
复制代码
  • collection:指要遍历的集合的key
  • open:以什么开始
  • close:以什么结束
  • separator:遍历元素的分隔符
  • item:遍历的元素的变量名
  • index:索引
  • 遍历List:
  • index:保存了当前元素的索引
  • item:保存了当前元素的值
  • 遍历Map:
  • index:保存当前元素的key
  • item:保存当前元素的值

新增测试方法

@Test
public void getTeacherListByIds() {
    TeacherMapper teacherMapper = openSession.getMapper(TeacherMapper.class);
    List<Integer> ids = Arrays.asList(1,2,3);
    List<Teacher> teacherList = teacherMapper.getTeacherListByIds(ids);
    System.out.println(teacherList);
}
复制代码

执行测试

image.png

choose,分支选择,相当于if-else

TeacherMapper接口中新增一个方法

List<Teacher> getTeacherListByChoose(Teacher teacher);
复制代码

在TeacherMapper.xml中增加SQL语句

<select id="getTeacherListByChoose" resultType="com.citi.entity.Teacher">
    select * from t_teacher
    <where>
        <choose>
            <when test="id!=null">
                id=#{id}
            </when>
            <when test="className!=null and !className.equals(&quot;&quot;)">
                class_name = #{className}
            </when>
            <when test="birthDate!=null">
                birth_date = #{birthDate}
            </when>
            <otherwise>
                1=1
            </otherwise>
        </choose>
    </where>
</select>
复制代码
@Test
public void getTeacherListByChoose() {
    TeacherMapper teacherMapper = openSession.getMapper(TeacherMapper.class);
    Teacher teacher = new Teacher();
    teacher.setId(1);
    teacher.setClassName("三年二班");
    // teacher.setBirthDate(new Date());
    List<Teacher> teacherList = teacherMapper.getTeacherListByChoose(teacher);
    System.out.println(teacherList);
}
复制代码

执行测试

image.png

id、className、birthDate赋值代码全部注销

image.png

choose可以实现条件查询条件的分支选择,if可以实现查询条件的叠加

set,实现动态更新

实现动态更新,自动去除逗号“,”

TeacherMapper中新增方法

int updateTeacher(Teacher teacher);
复制代码

在TeacherMapper.xml中新增SQL语句

<update id="updateTeacher">
    update t_teacher
    <set>
        <if test="teacherName!=null and !teacherName.equals(&quot;&quot;)">
            teacher_name = #{teacherName},
        </if>
        <if test="className!=null and !className.equals(&quot;&quot;)">
            class_name = #{className},
        </if>
        <if test="address!=null and !address.equals(&quot;&quot;)">
            address = #{address},
        </if>
        <if test="birthDate!=null">
            birth_date = #{birthDate}
        </if>
    </set>
    <where>
        id = #{id}
    </where>
</update>
复制代码

增加测试方法

@Test
public void updateTeacher() {
    TeacherMapper teacherMapper = openSession.getMapper(TeacherMapper.class);
    Teacher teacher = new Teacher();
    teacher.setId(1);
    teacher.setClassName("三年三班");
    teacher.setTeacherName("Tony Stark");
    teacher.setBirthDate(new Date());
    teacherMapper.updateTeacher(teacher);
    Teacher updateTeacher = teacherMapper.getTeacherById(1);
    System.out.println(updateTeacher);
}
复制代码

执行测试

image.png

include与sql,抽取可重用的语句

以getTeacherListByIds方法的SQL映射语句为例

<!--抽取的可重复使用的SQL-->
<sql id="select*">select * from t_teacher</sql>
<select id="getTeacherListByIds" resultType="com.citi.entity.Teacher">
    <!--引用抽取的SQL-->
    <include refid="select*"></include> where id IN
    <foreach collection="ids" item="id_item" separator="," open="(" close=")">
        #{id_item}
    </foreach>
</select>


相关文章
|
17天前
|
SQL 缓存 Java
【详细实用のMyBatis教程】获取参数值和结果的各种情况、自定义映射、动态SQL、多级缓存、逆向工程、分页插件
本文详细介绍了MyBatis的各种常见用法MyBatis多级缓存、逆向工程、分页插件 包括获取参数值和结果的各种情况、自定义映射resultMap、动态SQL
【详细实用のMyBatis教程】获取参数值和结果的各种情况、自定义映射、动态SQL、多级缓存、逆向工程、分页插件
|
1月前
|
SQL Java 数据库连接
mybatis使用四:dao接口参数与mapper 接口中SQL的对应和对应方式的总结,MyBatis的parameterType传入参数类型
这篇文章是关于MyBatis中DAO接口参数与Mapper接口中SQL的对应关系,以及如何使用parameterType传入参数类型的详细总结。
35 10
|
2月前
|
SQL XML Java
mybatis复习03,动态SQL,if,choose,where,set,trim标签及foreach标签的用法
文章介绍了MyBatis中动态SQL的用法,包括if、choose、where、set和trim标签,以及foreach标签的详细使用。通过实际代码示例,展示了如何根据条件动态构建查询、更新和批量插入操作的SQL语句。
mybatis复习03,动态SQL,if,choose,where,set,trim标签及foreach标签的用法
|
3月前
|
SQL Java 数据库连接
Mybatis系列之 Error parsing SQL Mapper Configuration. Could not find resource com/zyz/mybatis/mapper/
文章讲述了在使用Mybatis时遇到的资源文件找不到的问题,并提供了通过修改Maven配置来解决资源文件编译到target目录下的方法。
Mybatis系列之 Error parsing SQL Mapper Configuration. Could not find resource com/zyz/mybatis/mapper/
|
2月前
|
SQL XML Java
mybatis :sqlmapconfig.xml配置 ++++Mapper XML 文件(sql/insert/delete/update/select)(增删改查)用法
当然,这些仅是MyBatis功能的初步介绍。MyBatis还提供了高级特性,如动态SQL、类型处理器、插件等,可以进一步提供对数据库交互的强大支持和灵活性。希望上述内容对您理解MyBatis的基本操作有所帮助。在实际使用中,您可能还需要根据具体的业务要求调整和优化SQL语句和配置。
46 1
|
3月前
|
SQL 流计算
Flink SQL 在快手实践问题之使用Dynamic Cumulate Window绘制直播间累计UV曲线如何解决
Flink SQL 在快手实践问题之使用Dynamic Cumulate Window绘制直播间累计UV曲线如何解决
60 1
|
3月前
|
SQL Java 数据库连接
Mybatis系列之 动态SQL
文章详细介绍了Mybatis中的动态SQL用法,包括`<if>`、`<choose>`、`<when>`、`<otherwise>`、`<trim>`和`<foreach>`等元素的应用,并通过实际代码示例展示了如何根据不同条件动态生成SQL语句。
|
3月前
|
SQL Java 关系型数据库
SpringBoot 系列之 MyBatis输出SQL日志
这篇文章介绍了如何在SpringBoot项目中通过MyBatis配置输出SQL日志,具体方法是在`application.yml`或`application.properties`中设置MyBatis的日志实现为`org.apache.ibatis.logging.stdout.StdOutImpl`来直接在控制台打印SQL日志。
SpringBoot 系列之 MyBatis输出SQL日志
|
2月前
|
关系型数据库 MySQL 网络安全
5-10Can't connect to MySQL server on 'sh-cynosl-grp-fcs50xoa.sql.tencentcdb.com' (110)")
5-10Can't connect to MySQL server on 'sh-cynosl-grp-fcs50xoa.sql.tencentcdb.com' (110)")