mybatis四(动态sql)
<1>
<select id="selectUserByConditions" parameterType="user" resultType="user">
SELECT * FROM USER WHERE =
<if test="id != null and id!=''">
and id =#{id}
</if>
<if test="id != null and id!=''">
id =#{id}
</if>
<if test="email != null and email !=''">
and email =#{email}
</if>
<if test="lastName != null and lastName !=''">
and last_name =#{lastName}
</if>
<!-- ognl会进行数字和字符串之间的转换判断""== -->
<if test="gender == 1 or gender == 0">
and gender =#{gender}
</if>
</select>
<2>
<select id="selectUserByConditions" parameterType="user" resultType="user">
SELECT * FROM USER
<!-- where只会去掉第一个and ,如果and在后面的话就会出问题如下
<if test="id != null and id!=''">
id =#{id} and
</if>
<if test="email != null and email !=''">
email =#{email} and
</if>
<if test="lastName != null and lastName !=''">
last_name =#{lastName} and
</if>
<!-- ognl会进行数字和字符串之间的转换判断""== -->
<if test="gender == 1 or gender == 0">
gender =#{gender}
</if>
-->
<where>
<if test="id != null and id!=''">
id =#{id}
</if>
<if test="email != null and email !=''">
and email =#{email}
</if>
<if test="lastName != null and lastName !=''">
and last_name =#{lastName}
</if>
<!-- ognl会进行数字和字符串之间的转换判断""== -->
<if test="gender == 1 or gender == 0">
and gender =#{gender}
</if>
</where>
</select>
<3>前后缀解决
后缀解决
<select id="selectUserByConditions" parameterType="user"
resultType="user">
SELECT * FROM USER
<!-- 后面多出的and或者or where 不能解决
prefix 前缀
prefixOverrides:前缀覆盖,去掉字符串前面多余的字符
suffix:后缀 给拼装的字符串添加一个后缀
suffixOverrides:后缀覆盖
-->
<trim prefix="where" suffixOverrides="and">
<if test="id != null and id!=''">
id =#{id} and
</if>
<if test="email != null and email !=''">
email =#{email} and
</if>
<if test="lastName != null and lastName !=''">
last_name =#{lastName} and
</if>
<!-- ognl会进行数字和字符串之间的转换判断""== -->
<if test="gender == 1 or gender == 0">
gender =#{gender}
</if>
</trim>
</select>
前缀解决
<select id="selectUserByCons" parameterType="user"
resultType="user">
SELECT * FROM USER
<!-- where只会去掉第一个and -->
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id!=''">
and id =#{id}
</if>
<if test="email != null and email !=''">
and email =#{email}
</if>
<if test="lastName != null and lastName !=''">
and last_name =#{lastName}
</if>
<!-- ognl会进行数字和字符串之间的转换判断""== -->
<if test="gender == 1 or gender == 0">
and gender =#{gender}
</if>
</trim>
</select>
<4>
<select id="selectUserByCons" parameterType="user"
resultType="user">
SELECT * FROM USER
<where>
<!-- 只选择其中的一个条件查 -->
<choose>
<when test="id != null and id!=''">
id =#{id}
</when>
<when test="email != null and email !=''">
and email =#{email}
</when>
<when test="lastName != null and lastName !=''">
and last_name =#{lastName}
</when>
<otherwise>
=
</otherwise>
</choose>
</where>
</select>
<5>更新
<update id="updateUserById" parameterType="model.User">
UPDATE user
<set>
<if test="email != null and email !=''">
email =#{email},
</if>
<if test="lastName != null and lastName !=''">
last_name =#{lastName},
</if>
<!-- ognl会进行数字和字符串之间的转换判断""== -->
<if test="gender == 1 or gender == 0">
gender =#{gender}
</if>
</set>
WHERE id=#{id}
</update>
<6>批量查询
<select id="selectUserByIds" resultType="user">
SELECT * FROM USER where id
in
<!-- foreach元素的属性主要有 item,index,collection,open,separator,close。
item表示集合中每一个元素进行迭代时的别名,
index指 定一个名字,用于表示在迭代过程中,每次迭代到的位置, 遍历list的时候index就是list的索引,item就是当前值
遍历map时,index就是key,item当前值
open表示该语句以什么开始, separator表示在每次进行迭代之间以什么符号作为分隔 符,
close表示以什么结束。
如果传入的是单参数且参数类型是一个List的时候,collection属性值为list .
如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,
在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,
所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key. -->
public List<User> selectUserByIds(@Param("ids")List ids);对应collection="ids"
<foreach collection="list" item="item_id" open="(" separator=","
close=")">
#{item_id}
</foreach>
</select>
<7>批量保存
mysql下
<!-- public void addDepts(@Param("emps") List<Dept> emps); -->
<!-- MySQL下批量保存,可以foreach遍历 mysql支持values(),(),()语法 --> //推荐使用
<insert id="addEmpsBatch">
INSERT INTO emp(ename,gender,email,did)
VALUES
<foreach collection="emps" item="emp" separator=",">
(#{emp.eName},#{emp.gender},#{emp.email},#{emp.dept.id})
</foreach>
</insert>
<!-- 这种方式需要数据库连接属性allowMutiQueries=true的支持 --> //在jdbc.url=jdbc:mysql://localhost:3306/mybatis?allowMultiQueries=true
<!-- <insert id="addEmpsBatch"> 后加上allowMultiQueries=true
<foreach collection="emps" item="emp" separator=";"> 表示可以多次执行insert into语句,中间;不会错
INSERT INTO emp(ename,gender,email,did)
VALUES(#{emp.eName},#{emp.gender},#{emp.email},#{emp.dept.id})
</foreach>
</insert> -->
批量batch保存mybatis ExecutorType.BATCH
Mybatis内置的ExecutorType有3种,默认为simple,该模式下它为每个语句的执行创建一个新的预处理语句,单条提交sql;而batch模式重复使用已经预处理的语句,并且批量执行所有更新语句,
显然batch性能将更优; 但batch模式也有自己的问题,比如在Insert操作时,在事务没有提交之前,是没有办法获取到自增的id,这在某型情形下是不符合业务要求的
Oracle下批量保存
方法1,将多个insert放在begin和end之间执行
begin
insert into user(userno,username,email) values (seq_user.nextval,'','aaaaa');
insert into user(userno,username,email) values (seq_user.nextval,'','bbbbbb');
end;
方法2利用中间表
insert into user(userno,username,email)
select seq_user.nextval,username,email from(
select '' username ,'cccccc' email from dual
union
select '' username,'ddddddddddd' email from dual
union
select '' username,'eeeeeee' email from dual
)
--> <!--示例-->
<!-- public void addUsers(@Param("users") List<User> users);-->
<insert id = "addUsers"databaseId="oracle" parameterType="user">
<!--Oracle:批量保存方法1 -->
<foreach collection = "users" item="user" open="begin" close="end;">
insert into user(userno,username,email)
values (seq_user.nextval,#{user.username},#{user.email});
</foreach> <!--
<!-- Oracle:批量保存方法2 -->
insert into user(userno,username,email)
select seq_user.nextval,username,email from(
<foreach collection="users" item="user" separator="union" >
select #{user.username} username ,#{user.email} email from dual
</foreach>
)
-->
</insert>
<8>两个内置参数
<!-- mybatis的 两个内置参数,_parameter 代表整个参数 单个参数,_parameter 就是这个参数 多个参数 会被封装成一个map,_parameter就是代表这个map
_databaseId 如果配置了databaseIdProvider标签, _databaseId就是代表当前数据库的别名,mysql或者oracle -->
<select id="selectUserByDataBaseId" resultType="user">
<bind name="nameLike" value="'%' + lastName + '%'"/>
<if test="_databaseId=='mysql'">
select * from user
<if test="_parameter!=null">
where last_name=#{_parameter.lastName}
</if>
</if>
<if test="_databaseId=='oracle'">
select * from user where last_name = #{nameLike}
</if>
</select>
<9>sql片段
<sql id="userColumn">
id,email,last_name,gender
</sql>
<select id="selectUser" resultType="user">
select
<include refid="userColumn"/>
from user where id=#{id}
</select>
2.
<sql id="userColumn">
id,email,last_name,gender,${AA}
</sql>
<select id="selectUser" resultType="user">
select
<include refid="userColumn">
<property name="AA" value="depart_id"/>
</include>
from user where id=#{id}
</select>
mybatis四(动态sql)的更多相关文章
- 一分钟带你了解下MyBatis的动态SQL!
MyBatis的强大特性之一便是它的动态SQL,以前拼接的时候需要注意的空格.列表最后的逗号等,现在都可以不用手动处理了,MyBatis采用功能强大的基于OGNL的表达式来实现,下面主要介绍下. 一. ...
- MyBatis的动态SQL详解
MyBatis的动态SQL是基于OGNL表达式的,它可以帮助我们方便的在SQL语句中实现某些逻辑,本文详解mybatis的动态sql,需要的朋友可以参考下 MyBatis 的一个强大的特性之一通常是它 ...
- Mybatis解析动态sql原理分析
前言 废话不多说,直接进入文章. 我们在使用mybatis的时候,会在xml中编写sql语句. 比如这段动态sql代码: <update id="update" parame ...
- mybatis 使用动态SQL
RoleMapper.java public interface RoleMapper { public void add(Role role); public void update(Role ro ...
- MyBatis框架——动态SQL、缓存机制、逆向工程
MyBatis框架--动态SQL.缓存机制.逆向工程 一.Dynamic SQL 为什么需要动态SQL?有时候需要根据实际传入的参数来动态的拼接SQL语句.最常用的就是:where和if标签 1.参考 ...
- 使用Mybatis实现动态SQL(一)
使用Mybatis实现动态SQL 作者 : Stanley 罗昊 [转载请注明出处和署名,谢谢!] 写在前面: *本章节适合有Mybatis基础者观看* 前置讲解 我现在写一个查询全部的 ...
- MyBatis探究-----动态SQL详解
1.if标签 接口中方法:public List<Employee> getEmpsByEmpProperties(Employee employee); XML中:where 1=1必不 ...
- mybatis中的.xml文件总结——mybatis的动态sql
resultMap resultType可以指定pojo将查询结果映射为pojo,但需要pojo的属性名和sql查询的列名一致方可映射成功. 如果sql查询字段名和pojo的属性名不一致,可以通过re ...
- mybatis.5.动态SQL
1.动态SQL,解决关联sql字符串的问题,mybatis的动态sql基于OGNL表达式 if语句,在DeptMapper.xml增加如下语句; <select id="selectB ...
- MyBatis的动态SQL详解-各种标签使用
MyBatis的动态SQL是基于OGNL表达式的,它可以帮助我们方便的在SQL语句中实现某些逻辑. MyBatis中用于实现动态SQL的元素主要有: if choose(when,otherwise) ...
随机推荐
- 时间序列大数据平台建设(Time Series Data,简称TSD)
来源:https://blog.csdn.net/bluishglc/article/details/79277455 引言在大数据的生态系统里,时间序列数据(Time Series Data,简称T ...
- AES算法在Python中的使用
Python有很多开源库,使用AES等加密算法时可以找对应的开源库.我记录一下安装方法: (1)下载开源库pycrypto 下载地址:https://pypi.python.org/pypi/pycr ...
- Python Selenium set Chrome Preference Download Location.
def set_chrome_pref(self): chromeOptions = webdriver.ChromeOptions() prefs = {"download.default ...
- redis 主从复制 [转]
一.Redis的Replication: 这里首先需要说明的是,在Redis中配置Master-Slave模式真是太简单了.相信在阅读完这篇Blog之后你也可以轻松做到.这里我们还是先列出一些理论性的 ...
- P1015回文数
传送 回文数的判断有个神奇的公式: g[i]==g[leng+-i] 其中leng为字符串长度,看每个g[i]是否都满足它,若满足,就是回文数 ps:洛谷的impossible有毒,必须得复制题干中的 ...
- 峰Redis学习(3)Redis 数据结构(字符串、哈希)
第一节:Redis 数据类型介绍 五种数据类型: 字符串(String) 字符串列表(list) 有序字符串集合(sorted set) 哈希(hash) 字符串集合(set) 第二节:Redis ...
- vue之过滤器
在vue2.0以前的版本中vue内置的过滤器,但是因为缺乏纯JavaScript的灵活性,现在vue2.0版本中已经删除了内置过滤器,所以需要自己注册过滤器,我们可以定义本地(在某一个template ...
- 通过编写PHP代码并运用“正则表达式”来实现对试题文档进行去重复、排序
通过编写PHP代码并运用“正则表达式”来实现对试题文档进行去重复.排序 <?php $subject = file_get_contents('test.txt'); $pattern = '/ ...
- ie-table不显示边框解决办法
.thisTd { background-clip: padding-box; position:relative; } 原来背景也有边界的:决定背景会盖住哪些部 ...
- GIT命令行笔记
一次常规的初始化+推送: git initgit config user.email "you@example.com"git config user.name "asm ...