首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >mybatis之动态SQL

mybatis之动态SQL

作者头像
一个风轻云淡
发布2022-11-15 17:49:42
2150
发布2022-11-15 17:49:42
举报
文章被收录于专栏:java学习javajava学习java

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

if

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

<!--List<Emp> getEmpListByCondition(Emp emp);-->

<select id="getEmpListByMoreTJ" resultType="Emp">

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

</select>

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>

trim

trim用于去掉或添加标签中的内容

常用属性:

prefix:在trim标签中的内容的前面添加某些内容

prefixOverrides:在trim标签中的内容的前面去掉某些内容

suffix:在trim标签中的内容的后面添加某些内容

suffixOverrides:在trim标签中的内容的后面去掉某些内容

<select id="getEmpListByMoreTJ" resultType="Emp">

 select * from t_emp
 <trim prefix="where" suffixOverrides="and">

 <if test="ename != '' and ename != null">
        ename = #{ename} and
 </if>
<if test="age != '' and age != null">
       age = #{age} and
</if>

 <if test="sex != '' and sex != null">
       sex = #{sex}
 </if>

 </trim>
</select>

choose、when、otherwise

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

<!--List<Emp> getEmpListByChoose(Emp emp);-->

<select id="getEmpListByChoose" resultType="Emp">

 select <include refid="empColumns"></include> from t_emp
 <where>

 <choose>

 <when test="ename != '' and ename != null">

 ename = #{ename}
 </when>

 <when test="age != '' and age != null">
            age = #{age}
 </when>

 <when test="sex != '' and sex != null">
           sex = #{sex}
 </when>

 <when test="email != '' and email != null">
          email = #{email}
 </when>

 </choose>

 </where>
</select>

foreach 

<!--int insertMoreEmp(List<Emp> emps);-->

<insert id="insertMoreEmp">

   insert into t_emp values
    <foreach collection="emps" item="emp" separator=",">

       (null,#{emp.ename},#{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(int[] eids);-->

<delete id="deleteMoreByArray">

 delete from t_emp where eid in
 <foreach collection="eids" item="eid" separator="," open="(" close=")"> 
        #{eid}
 </foreach>
</delete>

我的博客即将同步至腾讯云开发者社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=1fomewdxp7l2 ​​​​​​​

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2022-11-08,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • if
  • where
  • trim
  • choose、when、otherwise
  • foreach 
相关产品与服务
云开发 CloudBase
云开发(Tencent CloudBase,TCB)是腾讯云提供的云原生一体化开发环境和工具平台,为200万+企业和开发者提供高可用、自动弹性扩缩的后端云服务,可用于云端一体化开发多种端应用(小程序、公众号、Web 应用等),避免了应用开发过程中繁琐的服务器搭建及运维,开发者可以专注于业务逻辑的实现,开发门槛更低,效率更高。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档