动态SQL

72 阅读3分钟

开启掘金成长之旅!这是我参与「掘金日新计划 · 12 月更文挑战」的第1天,点击查看活动详情

延迟加载

分步查询的优点:可以实现延迟加载,但是必须在核心配置文件中设置全局配置信息:

  • lazyLoadingEnabled:延迟加载的全局开关。当开启时,所有关联对象都会延迟加载
  • aggressiveLazyLoading:当开启时,任何方法的调用都会加载该对象的所有属性。 否则,每个属性会按需加载

此时就可以实现按需加载,获取的数据是什么,就只会执行相应的sql。此时可通过association和collection中的fetchType属性设置当前的分步查询是否使用延迟加载,fetchType="lazy(延迟加载)|eager(立即加载)"

动态SQL

Mybatis框架的动态SQL技术是一种根据特定条件动态拼装SQL语句的功能,它存在的意义是为了解决拼接SQL语句字符串时的痛点问题。

if(通过test属性的表达式进行判断)

if标签可通过test属性的表达式进行判断,若表达式的结果为true,则标签中的内容会执行;反之标签中的内容不会执行

这个1=1可以用来拼接and语句,例如:当empName为null时

 <!--List<Emp> getEmpByCondition(Emp emp);-->
 ​
 <select id="getEmpByCondition" resultType="Emp">
 select * from t_emp where 1=1
 <if test="empName != null and empName !=''">
 and emp_name = #{empName}
 </if>
 <if test="age != null and age !=''">
 and age = #{age}
 </if>
 <if test="sex != null and sex !=''">
 and sex = #{sex}
 </if>
 <if test="email != null and email !=''">
 and email = #{email}
 </if>
 </select>

where(结合if使用)

where和if一般结合使用:

  • 若where标签中的if条件都不满足,则where标签没有任何功能,即不会添加where关键字
  • 若where标签中的if条件满足,则where标签会自动添加where关键字,并将条件最前方多余的and/or去掉

注意:where标签不能去掉条件最后多余的and

 <!--List<Emp> getEmpByCondition(Emp emp);-->
 ​
 <select id="getEmpByCondition" resultType="Emp">
 select * from t_emp
 <where>
 <if test="empName != null and empName !=''">
 emp_name = #{empName}
 </if>
 <if test="age != null and age !=''">
 and age = #{age}
 </if>
 <if test="sex != null and sex !=''">
 and sex = #{sex}
 </if>
 <if test="email != null and email !=''">
 and email = #{email}
 </if>
 </where>
 </select>

trim(去掉或添加标签中的内容)

trim用于去掉或添加标签中的内容。常用属性有:

属性作用
prefix在trim标签中的内容的前面添加某些内容
suffix在trim标签中的内容的后面添加某些内容
prefixOverrides在trim标签中的内容的前面去掉某些内容
suffixOverrides在trim标签中的内容的后面去掉某些内容
 <!--List<Emp> getEmpByCondition(Emp emp);-->
 ​
 <select id="getEmpByCondition" resultType="Emp">
 select * from t_emp
 <trim prefix="where" suffixOverrides="and|or">
 <if test="empName != null and empName !=''">
 emp_name = #{empName} and
 </if>
 <if test="age != null and age !=''">
 age = #{age} and
 </if>
 <if test="sex != null and sex !=''">
 sex = #{sex} or
 </if>
 <if test="email != null and email !=''">
 email = #{email}
 </if>
 </trim>
 </select>

若trim中的标签都不满足条件,则trim标签没有任何效果,也就是只剩下select * from t_emp

 //测试类
 @Test
 public void getEmpByCondition() {
 SqlSession sqlSession = SqlSessionUtils.getSqlSession();
 DynamicSQLMapper mapper = sqlSession.getMapper(DynamicSQLMapper.class);
   
 List<Emp> emps= mapper.getEmpByCondition(new Emp(null"张三"nullnullnullnull));
 System.out.println(emps);
 }

choose、when、otherwise(相当于 if...else if..else)

相当于if a else if b else if c else d,只会执行其中一个

 <select id="getEmpByChoose" resultType="Emp">
 select * from t_emp
 <where>
 <choose>
         <when test="empName != null and empName != ''">
          emp_name = #{empName}
         </when>
         <when test="age != null and age != ''">
          age = #{age}
         </when>
         <when test="sex != null and sex != ''">
          sex = #{sex}
         </when>
         <when test="email != null and email != ''">
          email = #{email}
         </when>
         <otherwise>
          did = 1
         </otherwise>
 </choose>
 </where>
 </select>
 @Test
 public void getEmpByChoose() {
 SqlSession sqlSession = SqlSessionUtils.getSqlSession();
 DynamicSQLMapper mapper = sqlSession.getMapper(DynamicSQLMapper.class);
   
 List<Emp> emps = mapper.getEmpByChoose(new Emp(null, "张三"23"男""123@qq.com", null));
 System.out.println(emps);
 }

image-20220409184841599

foreach

属性作用
collection设置要循环的数组或集合
item表示集合或数组中的每一个数据
separator设置循环体之间的分隔符,分隔符前后默认有一个空格,如,
open设置foreach标签中的内容的开始符
close设置foreach标签中的内容的结束符

.xml

 <!--int deleteMoreByArray(Integer[] eids);-->
 <delete id="deleteMoreByArray">
 delete from t_emp where eid in
 <foreach collection="eids" item="eid" separator="," open="(" close=")">
 #{eid}
 </foreach>
 </delete>
 ​
 <!--int insertMoreByList(@Param("emps") List<Emp> emps);-->
 <insert id="insertMoreByList">
 insert into t_emp values
 <foreach collection="emps" item="emp" separator=",">
 (null,#{emp.empName},#{emp.age},#{emp.sex},#{emp.email},null)
 </foreach>
 </insert>
 ​
 <!--int deleteMoreByArray(int[] eids);--> 
 <delete id="deleteMoreByArray"> 
   delete from t_emp where 
   <foreach collection="eids" item="eid" separator="or"> 
       eid = #{eid} 
   </foreach>
 </delete>
 ​
 <!--int deleteMoreByArray(Integer[] eids);-->
 <delete id="deleteMoreByArray">
    delete from t_emp where eid in
     <foreach collection="eids" item="eid" separator="," open="(" close=")">
       #{eid}
     </foreach>
 </delete>
 ​

.java

 @Test
 public void deleteMoreByArray() {
 SqlSession sqlSession = SqlSessionUtils.getSqlSession();
 DynamicSQLMapper mapper = sqlSession.getMapper(DynamicSQLMapper.class);
 int result = mapper.deleteMoreByArray(new Integer[]{6789});
 System.out.println(result);
 }

 @Test
 public void insertMoreByList() {
 SqlSession sqlSession = SqlSessionUtils.getSqlSession();
 DynamicSQLMapper mapper = sqlSession.getMapper(DynamicSQLMapper.class);
 Emp emp1 = new Emp(null,"a",1,"男","123@321.com",null);
 Emp emp2 = new Emp(null,"b",1,"男","123@321.com",null);
 Emp emp3 = new Emp(null,"c",1,"男","123@321.com",null);
   
 List<Emp> emps = Arrays.asList(emp1, emp2, emp3);
 int result = mapper.insertMoreByList(emps);
 System.out.println(result);
 }

SQL片段的声明和引用

sql片段:可以记录一段公共sql片段,在使用的地方通过 include 标签进行引入。

 <!--List<Emp> getEmpByCondition(Emp emp);-->
 <sql id="empColumns">
   eid,emp_name,age,sex,email
 </sql>
 ​
 <select id="getEmpByCondition" resultType="Emp">
 select <include refid="empColumns"></include> from t_emp
 </select>