1.动态查询(动态生成Where语句):
这篇文章中叙述的功能,统一使用下表测试:
CREATE TABLE `test_order_detail_mm` ( `id` int(20) NOT NULL AUTO_INCREMENT, `order_id` int(20) NOT NULL, `goods_name` varchar(50) DEFAULT NULL, `single_price` decimal(19,2) DEFAULT NULL, `num` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
(1)我们在写SELECT语句时,有时候会遇到有不定数量个where条件,一般我们在处理时,需要动态的拼写sql语句,在Mybatis中使用动态sql,where标签来处理这个问题。
(2)配置mapper文件:
where元素的作用是会在写入where元素的地方输出一个where,并且mybatis会智能地根据if条件来输出where条件。如上例,假如orderId=0那么“AND order_id = #{orderId}”这条语句将不会输出。另外假如第一个标签id不符合,第一个where条件就变成了“AND order_id = #{orderId}”,即使这样,前面也不会加and。
(3)测试类:
@Test public void dynamicSelect() { SqlSession session = sqlSessionFactory.openSession(); //创建查询对象 TestOrderDetailMm tst = new TestOrderDetailMm(); tst.setSinglePrice(198.5); tst.setNum(2); //执行动态查询 Listlst = session.selectList("com.vip.mapping.TestOrderDetailMm.dynamicSelect", tst); System.out.println(lst); }
如上例中,我们只设置了2个查询条件,SinglePrice和num 两个条件,其余属性未设置。这块需要注意,对于String类型的属性,如果未set则为null,如果是int或double,未set则为0。
(4)运行结果:
DEBUG - ooo Using Connection [com.mysql.jdbc.JDBC4Connection@3d74bf60] DEBUG - ==> Preparing: select * from test_order_detail_mm WHERE single_price = ? AND num = ? DEBUG - ==> Parameters: 198.5(Double), 2(Integer) [TestOrderDetailMm [id=2, orderId=1, goodsName=衣服, singlePrice=198.5, num=2], TestOrderDetailMm [id=3, orderId=1, goodsName=衣服, singlePrice=198.5, num=2]]
如上边的运行日志,在where条件中,只有2个条件single_price和num,其余我们未设置的查询条件(属性)没有放在Where条件中。
2.动态更新(动态生成update set语句):
动态update,与动态查询类似。我们对某个属性设置值后,只update这个属性,而不会将其他属性设置成null或者0。
(1)Mapper文件:
update test_order_detail_mm where id = #{id} id = #{id}, order_id = #{orderId}, goods_name = #{goodsName}, single_price = #{singlePrice}, num = #{num}
(2)测试类:
@Test public void dynamicUpdate() { SqlSession session = sqlSessionFactory.openSession(); //创建查询对象 TestOrderDetailMm tst = new TestOrderDetailMm(); tst.setId(2); tst.setGoodsName("遥控车"); //执行动态查询 try{ session.update("com.vip.mapping.TestOrderDetailMm.dynamicUpdate", tst); }catch(Exception e) { e.printStackTrace(); session.rollback(); } session.commit(); session.close(); }
(3)运行结果:
DEBUG - ooo Using Connection [com.mysql.jdbc.JDBC4Connection@31368b99] DEBUG - ==> Preparing: update test_order_detail_mm SET id = ?, goods_name = ? where id = ? DEBUG - ==> Parameters: 2(Integer), 遥控车(String), 2(Integer)
如上运行结果,我们只update了goods_name字段,没有修改其他字段。
3.实现in操作:
在这部分语句中,我们主要实现下面的sql语句:
select * from test_order_detail_mm where id in (2,3,4)
mybatis实现该功能,需要使用foreach标签:
foreach的主要用在构建in条件中,它可以在SQL语句中进行迭代一个集合。foreach元素的属性主要有item,index,collection,open,separator,close。下面分别介绍:
①item表示集合中每一个元素进行迭代时的别名。
②index指定一个名字,用于表示在迭代过程中,每次迭代到的位置。当前所遍历到的索引号。
③open表示该语句以什么开始。
④separator表示在每次进行迭代之间以什么符号作为分隔符。
⑤close表示以什么结束。
⑥在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况下,该属性的值是不一样的,主要有一下3种情况:
a.如果传入的是单参数且参数类型是一个List的时候,collection属性值为list;
b.如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array;
c.如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key。
4.批量插入:
5.批量删除: