1.if标签

接口中方法:public List<Employee> getEmpsByEmpProperties(Employee employee);

XML中:where 1=1必不可少

<select id="getEmpsByEmpProperties" resultType="com.mybatis.entity.Employee">
select * from t_employee where 1=1
<if test="empId!=null">
and empId=#{empId}
</if>
<if test="empName!=null &amp;&amp; empName.trim()!=&quot;&quot;">
and empName like #{empName}
</if>
<if test="empSex==0 or empSex==1">
and empSex=#{empSex}
</if>
<if test="empAge!=null">
and empAge=#{empAge}
</if>
</select>

2.where标签

接口中方法:public List<Employee> getEmpsByEmpProperties(Employee employee);

XML中:

mybatis就会将where标签中拼装的sql,多出来的and或者or去掉,只会去掉第一个多出来的and或者or

<select id="getEmpsByEmpProperties" resultType="com.mybatis.entity.Employee">
select * from t_employee
<where>
<if test="empId!=null">
empId=#{empId}
</if>
<if test="empName!=null &amp;&amp; empName.trim()!=&quot;&quot;">
and empName like concat('%',#{empName},'%')
</if>
<if test="empSex==0 or empSex==1">
and empSex=#{empSex}
</if>
<if test="empAge!=null">
and empAge=#{empAge}
</if>
</where>
</select>

3.set标签

接口中方法:public Integer updateEmp(Employee emp);

XML中:

<update id="updateEmp">
<!-- Set标签的使用 推荐 -->
<!-- update t_employee
<set>
<if test="empName!=null">
empName=#{empName},
</if>
<if test="empSex==0 or empSex==1">
empSex=#{empSex},
</if>
<if test="empAge!=null">
empAge=#{empAge}
</if>
</set>
where empId=#{empId} --> <!-- Trim:更新拼串 -->
update t_employee
<trim prefix="set" suffixOverrides=",">
<if test="empName!=null">
empName=#{empName},
</if>
<if test="empSex==0 or empSex==1">
empSex=#{empSex},
</if>
<if test="empAge!=null">
empAge=#{empAge}
</if>
</trim>
where empId=#{empId}
</update>

4.trim标签

接口中方法:public List<Employee> getEmpsByEmpProperties(Employee employee);

XML中:

<select id="getEmpsByEmpProperties" resultType="com.mybatis.entity.Employee">
select * from t_employee
<!-- 后面多出的and或者or where标签不能解决
prefix="":前缀:trim标签体中是整个字符串拼串 后的结果。
prefix给拼串后的整个字符串加一个前缀
prefixOverrides="":
前缀覆盖: 去掉整个字符串前面多余的字符
suffix="":后缀
suffix给拼串后的整个字符串加一个后缀
suffixOverrides=""
后缀覆盖:去掉整个字符串后面多余的字符 -->
<!-- 自定义字符串的截取规则 -->
<trim prefix="where" suffixOverrides="and">
<if test="empId!=null">
empId=#{empId} and
</if>
<if test="empName!=null &amp;&amp; empName!=&quot;&quot;">
empName like #{empName} and
</if>
<if test="empSex==0 or empSex==1">
and empSex=#{empSex}
</if>
<if test="empAge!=null">
and empAge=#{empAge}
</if>
</trim>
</select>

5.foreach标签

5.1 批量查询

接口中方法:public List<Employee> getEmpsByempIdList(@Param("empIdList")List<String> empIdList);

XML中:

<select id="getEmpsByempIdList" resultType="com.mybatis.entity.Employee">
select * from t_employee
<!-- collection:指定要遍历的集合
item:将当前遍历出的元素赋值给指定的变量
separator:每个元素之间的分隔符
open:遍历出所有结果拼接一个开始的字符
close:遍历出所有结果拼接一个结束的字符
-->
<foreach collection="empIdList" item="empId" separator=","
open="where empId in(" close=")">
#{empId}
</foreach>
</select>

5.2 批量插入

接口中方法:public Integer addEmployees(@Param("emps")List<Employee> emps);

XML中:

<insert id="addEmployees">
<!-- 第一种方式:推荐 -->
insert into
t_employee(empId,empName,empSex,empAge)
values
<foreach collection="emps" item="emp" separator=",">
(#{emp.empId},#{emp.empName},#{emp.empSex},#{emp.empAge})
</foreach> <!-- 第二种方式:不推荐 需要数据库连接属性allowMultiQueries=true -->
<!--
<foreach collection="emps" item="emp" separator=";">
insert into t_employee(empId,empName,empSex,empAge)
values(#{emp.empId},#{emp.empName},#{emp.empSex},#{emp.empAge})
</foreach>
-->
</insert>

5.3 批量删除

接口中方法:public Integer deleteEmpsByempIdList(@Param("empIdList")List<String> empIdList);

XML中:

<delete id="deleteEmpsByempIdList">
delete from t_employee
<foreach collection="empIdList" item="empId" separator=","
open="where empId in(" close=")">
#{empId}
</foreach>
</delete>

   6.choose标签

     接口中方法:public List<Employee> getEmpsByChooseCondition(Employee emp);

XML中:

<select id="getEmpsByChooseCondition" resultType="com.mybatis.entity.Employee">
select * from t_employee
<where>
<!-- 如果带了empId就用empId查,如果带了empName就用empName查;只会进入其中一个 -->
<choose>
<when test="empId!=null">
empId=#{empId}
</when>
<when test="empName!=null">
empName like #{empName}
</when>
<otherwise>
empSex = 0
</otherwise>
</choose>
</where>
</select>

总结:mybatis 的动态sql语句是基于OGNL表达式的,主要有以下几类(可以随机组合)

  •   if  简单的条件判断
  •   choose (when,otherwize) ,相当于java 语言中的 switch ,与 jstl 中的choose 很类似.
  •   trim (对包含的内容加上 prefix,或者 suffix 等,前缀,后缀)
  •   where (主要是用来简化sql语句中where条件判断的,能智能的处理 and or ,不必担心多余导致语法错误)
  •   set (主要用于更新时)
  •   foreach (在实现 mybatis in 语句查询时特别有用)

MyBatis探究-----动态SQL详解的更多相关文章

  1. MyBatis的动态SQL详解

    MyBatis的动态SQL是基于OGNL表达式的,它可以帮助我们方便的在SQL语句中实现某些逻辑,本文详解mybatis的动态sql,需要的朋友可以参考下 MyBatis 的一个强大的特性之一通常是它 ...

  2. MyBatis的动态SQL详解-各种标签使用

    MyBatis的动态SQL是基于OGNL表达式的,它可以帮助我们方便的在SQL语句中实现某些逻辑. MyBatis中用于实现动态SQL的元素主要有: if choose(when,otherwise) ...

  3. Oracle中动态SQL详解(EXECUTE IMMEDIATE)

    Oracle中动态SQL详解(EXECUTE IMMEDIATE) 2017年05月02日 18:35:48 悠悠倾我心 阅读数:744 标签: oracle动态sqloracle 更多 个人分类:  ...

  4. MyBatis动态SQL详解

    MyBatis的动态SQL是基于OGNL表达式的,它可以帮助我们方便的在SQL语句中实现某些逻辑. MyBatis中用于实现动态SQL的元素主要有: if choose(when,otherwise) ...

  5. Java数据持久层框架 MyBatis之API学习七(动态 SQL详解)

    对于MyBatis的学习而言,最好去MyBatis的官方文档:http://www.mybatis.org/mybatis-3/zh/index.html 对于语言的学习而言,马上上手去编程,多多练习 ...

  6. 超全MyBatis动态SQL详解!( 看完SQL爽多了)

    MyBatis 令人喜欢的一大特性就是动态 SQL. 在使用 JDBC 的过程中, 根据条件进行 SQL 的拼接是很麻烦且很容易出错的. MyBatis 动态 SQL 的出现, 解决了这个麻烦. My ...

  7. oracle中动态SQL详解

    部分内容参考网上资料 1.静态SQLSQL与动态SQL Oracle编译PL/SQL程序块分为两个种:其一为前期联编(early binding),即SQL语句在程序编译期间就已经确定,大多数的编译情 ...

  8. 动态SQL详解

    动态SQL 在之前用户所编写的PL/SQL程序时有一个最大的特点:就是所操作的数据库对象(例如:表)必须存在,否则创建的子程序就会出问题,而这样的操作在开发之中被称为静态SQL操作,而动态SQL操作可 ...

  9. (转)Oracle中动态SQL详解

    本文转载自:http://www.cnblogs.com/gaolonglong/archive/2011/05/31/2064790.html 1.静态SQLSQL与动态SQL Oracle编译PL ...

随机推荐

  1. vue中,对象数组多层嵌套时,更新数据更新页面

    vue中的对象和数组的元素直接赋值修改时,是不能响应到view中去的 1.对象更新 this.a={title:'列表1’}; this.a.title='列表2’; <h1>{{a.ti ...

  2. 关于Android文件Apk下载的那点事

    1.Android文件Apk下载变ZIP压缩包解决方案 如果你的下载服务器为Nginx服务器,那么,在Nginx安装目录下的conf/mime.types文件的对应位置,加上以下一行语句,指定APK文 ...

  3. JavaScript继承的几种模式

    原型链 让一个类的原型对象指向另一个类的实例

  4. layer过去的时间不能选择,只能选择未来的时间 LayUI中的时间日期控件,设置时间范围,

    默认Layui中的时间控件显示如下: 我当时系统时间是2018-06-07, 我需要做的是2018-06-07之后过去的时间不能选择 <p><span>时间范围:</sp ...

  5. wpf1

    emCombobox.Items[2].IsEnabled = false; 隐藏下拉框里面的一个item wpf 单例模式. [DllImport("user32", CharS ...

  6. 2018-2019-2 网络对抗技术 20165311 Exp6 信息搜集与漏洞扫描

    20165311 Exp6 信息搜集与漏洞扫描 1.实验内容 2.实验过程 任务一:各种搜索技巧的应用 通过搜索引擎进行信息搜集 使用FOFA.SO 搜索特定类型的文件 任务二:DNS IP注册信息的 ...

  7. python中删除list元素的方法del()、pop()和remove()

    del():根据下标进行删除 In [1]: a = [1, 2, 3, 4, 5] In [2]: del a[0] In [3]: a Out[4]: [2, 3, 4, 5] pop(): 删除 ...

  8. 抓包分析、多线程爬虫及xpath学习

    1.抓包分析 1.1 Fiddler安装及基本操作 由于很多网站采用的是HTTPS协议,而fiddler默认不支持HTTPS,先通过设置使fiddler能抓取HTTPS网站,过程可参考(https:/ ...

  9. AIROBOT系统 之 私人存储 和 DLNA 智能电视云

    需求背景 工作多年之后发现有太多的电子资料到处存放.个人电脑是Mac,硬盘都不大,放不了太多东西.并且有时候想随时随地存放一些东西.所有就有了大家一个私有存储的需求 个人休息在家经常喜欢看电影电视剧, ...

  10. python中字符串的拼接

    1.+ 号 2.format() 3.f"{username}登录成功" 4.%s 5.列表中的 join 6.逗号 http://www.cnblogs.com/gengcx/p ...