MyBatis Example And与Or混合使用的实例
作者:看!蜗牛在漂移 时间:2021-11-11 01:53:13
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功能调换(还没尝试过)。
来源:https://blog.csdn.net/gunicoin/article/details/116461360
标签:MyBatis,Example,And,Or
0
投稿
猜你喜欢
浅谈java 面对对象(抽象 继承 接口 多态)
2022-04-01 07:23:50
Android编程获取GPS数据的方法详解
2023-09-20 16:37:34
Java 获取当前时间及实现时间倒计时功能【推荐】
2022-08-21 16:08:27
Spring Boot 定义系统启动任务的多种方式
2023-11-24 13:25:33
Android应用开发中Fragment的静态加载与动态加载实例
2021-11-14 15:14:11
windows下java -jar 后台运行以及杀死后台进程的操作
2022-02-09 17:28:13
C#根据日期计算星期几的实例代码
2021-07-24 21:43:34
WPF快速入门教程之绑定Binding
2021-10-10 15:32:00
Java程序中实现调用Python脚本的方法详解
2021-07-08 22:00:08
springBoot的事件机制GenericApplicationListener用法解析
2023-09-02 14:22:26
超全MyBatis动态代理详解(绝对干货)
2023-11-14 02:28:19
详解Java如何实现小顶堆和大顶堆
2023-11-10 04:03:05
SpringBoot实现异步事件驱动的方法
2023-11-01 07:48:54
java 画pdf用itext调整表格宽度、自定义各个列宽的方法
2021-07-12 04:16:10
c# WPF中CheckBox样式的使用总结
2023-07-17 15:44:46
JAVA设置手动提交事务,回滚事务,提交事务的操作
2022-07-20 08:07:40
Mybatis selectKey 如何返回新增用户的id值
2022-07-14 05:10:38
Gradle的安装和环境变量的配置详解
2023-07-11 04:56:37
Android使用ListView批量删除item的方法
2022-05-01 01:11:17
一篇文章看懂Java字符串操作
2023-07-17 02:29:44