JavaWeb学习笔记之Mybatis实用sql语句汇总
Posted 小明TI
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaWeb学习笔记之Mybatis实用sql语句汇总相关的知识,希望对你有一定的参考价值。
一、批量插入/更新/删除
批量操作主要使用的是Mybatis的foreach,遍历参数列表执行相应的操作,所以批量插入/更新/删除的写法是类似的,只是SQL略有区别而已。mysql批量操作需要数据库连接配置allowMultiQueries=true才可以。
(1)批量插入
insert into user (name, age,dept_code) values
(#item.name,jdbcType=VARCHAR,
#item.age,jdbcType=INTEGER,
#item.deptCode,jdbcType=VARCHAR
)
上面演示的是MySql的写法(表主键自增的写法),因为MySql支持主键自增,所以直接设置useGeneratedKeys=true,即可在插入数据时自动实现主键自增;不需要自增时就不需要设置useGeneratedKeys,而且插入SQL包含所有字段即可。实际Mysql还有另外一种写法,就是拼接values的写法,这种方法我测试过比多条insert语句执行的效率会高些。不过需要注意一次批量操作的数量做一定的限制。具体写法如下:
insert into user (name, age,dept_code) values
(#item.name,jdbcType=VARCHAR,
#item.age,jdbcType=INTEGER,
#item.deptCode,jdbcType=VARCHAR
)
对于Oracle不支持主键自增,需要序列替换,所以在SQL写法上略有不同,需要在insert语句前加个 …告知Mybatis主键如何生成(selectKey中间的内容有省略,实际是生成主键的SQL)。
(2)批量更新
update user set name=#item.name,jdbcType=VARCHAR,age=#item.age,jdbcType=INTEGER
where id=#item.id,jdbcType=INTEGER
(3)批量删除
delete from user
where id=#item.id,jdbcType=INTEGER
二、模糊查询
select
from user
where name like CONCAT(‘%’,#name,’%’ )
上面的模糊查询语句是Mysql数据库的写法示例,用到了Mysql的字符串拼接函数CONCAT,其它数据库使用相应的函数即可。
三、多条件查询
多条件查询常用到Mybatis的if判断,这样只有条件满足时,才生成对应的SQL。
select
from user
name = #name,jdbcType=VARCHAR
and age = #age,jdbcType=INTEGER
四、联表查询
联表查询在返回结果集为多张表的数据时,可以通过继承resultMap,简化写法。例如下面的示例,结果集在User表字段的基础上添加了Dept的部门名称
<select id="selectUserExt" parameterType="map" resultMap="ExtResultMap">
select
u.*, d.name
from user u inner join dept d on u.dept_code = d.code
<where>
<if test="name != null">
u.name = #name,jdbcType=VARCHAR
</if>
<if test="age != null">
and u.age = #age,jdbcType=INTEGER
</if>
</where>
</select>
五 、MyBatis的foreach语句详解
1人收藏此文章, 我要收藏 发表于3个月前 , 已有113次阅读 共0个评论
foreach的主要用在构建in条件中,它可以在SQL语句中进行迭代一个集合。foreach元素的属性主要有 item,index,collection,open,separator,close。item表示集合中每一个元素进行迭代时的别名,index指 定一个名字,用于表示在迭代过程中,每次迭代到的位置,open表示该语句以什么开始,separator表示在每次进行迭代之间以什么符号作为分隔 符,close表示以什么结束,在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况 下,该属性的值是不一样的,主要有一下3种情况:
1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
2. 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
3. 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在breast里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key
下面分别来看看上述三种情况的示例代码:
1.单参数List的类型:
select * from t_blog where id in
#item
上述collection的值为list,对应的Mapper是这样的
public List dynamicForeachTest(List ids);
测试代码:
@Test
public void dynamicForeachTest()
SqlSession session = Util.getSqlSessionFactory().openSession();
BlogMapper blogMapper = session.getMapper(BlogMapper.class);
List ids = new ArrayList();
ids.add(1);
ids.add(3);
ids.add(6);
List blogs = blogMapper.dynamicForeachTest(ids);
for (Blog blog : blogs)
System.out.println(blog);
session.close();
2.单参数array数组的类型:
select * from t_blog where id in
#item
上述collection为array,对应的Mapper代码:
public List dynamicForeach2Test(int[] ids);
对应的测试代码:
@Test
public void dynamicForeach2Test()
SqlSession session = Util.getSqlSessionFactory().openSession();
BlogMapper blogMapper = session.getMapper(BlogMapper.class);
int[] ids = new int[] 1,3,6,9;
List blogs = blogMapper.dynamicForeach2Test(ids);
for (Blog blog : blogs)
System.out.println(blog);
session.close();
3.自己把参数封装成Map的类型
select * from t_blog where title like “%”#title”%” and id in
#item
上述collection的值为ids,是传入的参数Map的key,对应的Mapper代码:
public List dynamicForeach3Test(Map
以上是关于JavaWeb学习笔记之Mybatis实用sql语句汇总的主要内容,如果未能解决你的问题,请参考以下文章