MyBatis Example And与Or混合使用的实例
MyBatis Example And与Or混合使用
(条件1 and 条件2) or ( 条件3 and 条件4)
MemberExample example = new MemberExample(); MemberExample.Criteria c1 = example.createCriteria(); c1.andOne(A).andTwo(B); MemberExample.Criteria c2 = example.createCriteria(); c2.andThree(C).andFour(D); example.or(c2);
条件1 and (条件2 or 条件3)
思路 : 分拆 : A and ( B or C ) ==> ( A and B ) or ( A and C )
MemberExample example = new MemberExample(); MemberExample.Criteria c1 = example.createCriteria(); c1.andOne(A).andTwo(B); MemberExample.Criteria c2 = example.createCriteria(); c2.andOne(A).andThree(C); example.or(c2);
MyBatis Example 处理And、Or关系方法
1.( xx and xx) or ( xx and xx)
实例代码:
BaUserExample baUserExample = new BaUserExample(); Criteria criteria1 = baUserExample.createCriteria(); criteria1.andOrgIdEqualTo("1"); criteria1.andDeptIdEqualTo("1"); Criteria criteria2 = baUserExample.createCriteria(); criteria2.andUserNameEqualTo("name"); criteria2.andEmailLike("%test@%"); baUserExample.or(criteria2); userMapper.countByExample(baUserExample);
执行的sql语句:
==> Preparing: select count(*) from ba_user WHERE ( org_id = ? and dept_id = ? ) or( user_name = ? and email like ? )
2.xx and ( xx or xx)
暂时没找到直接的sql语句构造方法,但是经过转换还是可以实现的
根据逻辑表达式可以知道 a and ( b or c ) = ( a and b) or ( a and c )
所以就转变成第一种方法
举个例子,假如想要实现
select count(*) from ba_user WHERE userName like ? and ( dept_id is null or dept_id <>? )
可以转化为
select count(*) from ba_user WHERE (userName like ? and dept_id is null ) or ( userName like ? and dept_id <>? )
实例代码:
BaUserExample baUserExample = new BaUserExample(); Criteria criteria1 = baUserExample.createCriteria(); criteria1.andUserNameLike("%name%"); criteria1.andDeptIdIsNull(); Criteria criteria2 = baUserExample.createCriteria(); criteria2.andUserNameLike("%name%"); criteria2.andDeptIdNotEqualTo("1"); baUserExample.or(criteria2); userMapper.countByExample(baUserExample);
执行的sql语句:
==> Preparing: select count(*) from ba_user WHERE ( user_name like ? and dept_id is null ) or( user_name like ? and dept_id <> ? )
这算是一种取巧的方法吧,对于这样的问题可以自己编写mapper.xml文件,或者在代码里面过滤,还有一种思路就是修改Criteria的代码实现and和or功能调换(还没尝试过)。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Spring整合Mybatis使用<context:property-placeholder>时的坑
这篇文章主要介绍了Spring整合Mybatis使用<context:property-placeholder>时的坑 的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下2016-06-06IDEA使用SequenceDiagram插件绘制时序图的方法
这篇文章主要介绍了IDEA使用SequenceDiagram插件绘制时序图的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-09-09利用java、js或mysql计算高德地图中两坐标之间的距离
最近因为工作的需求,需要计算出高德地图中两个坐标的距离,通过查找相关资料发现了多种实现的方法,下面这篇文章主要给大家介绍了关于利用java、js或mysql计算高德地图中两坐标之间距离的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考下。2017-10-10
最新评论