尚硅谷Mybatis学习笔记第9节动态SQL

本文详细介绍了MyBatis中的动态SQL功能,包括if标签根据条件选择性拼接SQL,where标签智能处理where关键字,trim标签用于去除或添加内容,choose、when、otherwise实现类似if...else的逻辑,以及foreach用于遍历集合动态插入SQL。此外,还提到了SQL片段的使用,便于代码复用。
摘要由CSDN通过智能技术生成

9、动态SQL

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

9.1、if

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

  /**
     * 根据条件查询员工信息
     * @param emp
     * @return
     */
    List<Emp> getEmpByCondition(Emp emp);
<!--List<Emp> getEmpByCondition(Emp emp);-->
    <select id="getEmpByConditionOne" resultType="Emp">
        select * from t_emp where 1=1
        <!--
        加入1=1恒成立条件,解决关键字 where  and  问题
        select * from t_emp where 1=1 and age = ? and gender = ?
       Emp{empId=null, empName='null', age=23, gender='男', dept=null}, Emp{empId=null, empName='null', age=23, gender='男', dept=null}] (TestEmployee.java:61) 

        -->
        <if test="empName != null and empName != ''"><!--xml里 &为特殊字符  表示java 里的 && 用and表示-->
            emp_name = #{empName}
        </if>
        <!--从表单传回来的value不为null或空字符串,则有值,传回来的为实体对象,所以可以用该对象属性-->
        <if test="age != null and age != ''">
            and age = #{age}
        </if>
        <if test="gender != null and gender != ''">
            <!--
            属性名写错时
            ReflectionException: There is no getter for property named 'gneder' in 'class com.atguigu.mybatis.pojo.Emp'
            -->
            and gender = #{gender}
        </if>
    </select>

9.2、where

where和if一般结合使用:
a>若where标签中的if条件都不满足,则where标签没有任何功能,即不会添加where关键字
b>若where标签中的if条件满足,则where标签会自动添加where关键字,并将条件最前方多余的
and去掉
注意:where标签不能去掉条件最后多余的and

<select id="getEmpListByMoreTJ2" resultType="Emp"> 
select * from t_emp 
<where> 
<if test="ename != '' and ename != null"> ename = #{ename} </if> 
<if test="age != '' and age != null"> and age = #{age} </if> 
<if test="sex != '' and sex != null"> and sex = #{sex} </if> 
</where>
 </select>

9.3、trim

trim用于去掉或添加标签中的内容
常用属性:
prefix:在trim标签中的内容的前面添加某些内容
prefixOverrides:在trim标签中的内容的前面去掉某些内容
suffix:在trim标签中的内容的后面添加某些内容
suffixOverrides:在trim标签中的内容的后面去掉某些内容

<select id="getEmpByCondition" resultType="Emp">
        select from t_emp
        <trim prefix="where" suffixOverrides="and">
            <if test="empName != null and empName != ''">
                emp_name = #{empName}
            </if>
            <if test="age != null and age != ''">
                and age = #{age}
            </if>
            <if test="gender != null and gender != ''">
                and gender = #{gender}
            </if>
        </trim>
    </select>

9.4、choose、when、otherwise

choose、when、 otherwise相当于if…else if…else

   /**
     * 使用choose查询员工信息
     * @param emp
     * @return
     */
    List<Emp> getEmpByChoose(Emp emp);
    <!--List<Emp> getEmpByChoose(Emp emp);-->
    <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="gender != null and gender != ''">
                    gender = #{gender}
                </when>
            </choose>
        </where>
    </select>

9.5、foreach

   /**
     * 批量添加员工信息
     * @param emps
     */
    void insertMoreEmp(@Param("emps") List<Emp> emps);//不加注释的话,MyBatis会以list为键,当前参数为值放入Map
    <!--
    void insertMoreEmp(@Param("emps")List<Emp> emps);
    传入的参数是List集合,MyBatis会将其放在Map里,以list为键,加了注解就可以写注解
    -->
    <insert id="insertMoreEmp">
        insert into t_emp values
        <!--传入的参数是List集合,MyBatis会将其放在Map里,以list为键,加了注解collectiono可以写注解emps-->
        <foreach collection="emps" item="emp" separator=","> <!--以后用的多-->
            (null,#{emp.empName},#{emp.age},#{emp.gender},null)
        </foreach>
    </insert>

9.6、SQL片段

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

总结

   <!--
    xml文档名字不对应时:
    BindingException: Invalid bound statement (not found): com.atguigu.mybatis.mapper.DynamicSQLMapper.getEmpByCondition
    -->

    <!--
        动态SQL:
        1.if,通过test属性中的表达式判断标签中的内容是否有效(是否会拼接到sql中)
        2.where
        a.若where标签中有条件成立,会自动生成where关键字
        b.会自动将where标签中内容前多余的and 去掉,但是其中内容后多余的and无法去掉
        c.若where标签中没有任何一个条件成立,则where没有任何功能
        3.trim
        prefix,suffix:在标签中内容前面或后面添加指定内容
        prefixOverrides、suffixOverrids:在标签中内容前面或后面去掉指定内容
        4、choose、when、otherwise
        相当于java中的id...else if...else
        when至少设置一个,otherwise更多设置一个
        5、foreach
        collection:设置要循环的数组或集合
        item:用一个字符串表示数组或集合中的每一个数据
        separator:设置每次循环的数据之间的分隔符
        open:循环的所有内容以什么开始
        close:循环的内容以什么结束
        6.sql片段
        可以记录一段sql,在需要用的地方使用include标签进行引用
         <sql id="empColumns">
        emp_id,emp_name,age,gender,dept_id
        </sql>
        <include refid="empColumns"></include>
    -->
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值