使用mybatis****Example类,(或者)or条件查询
程序员文章站
2022-03-11 18:45:53
...
使用Example类,or条件查询
SetmealExample setmealExample=new SetmealExample();
setmealExample.or().andNameLike("xxx");
setmealExample.or().andCodeLike("ddd");
setmealExample.or().andHelpCodeLike("条件");
Page<Setmeal> page= (Page<Setmeal>) setmealMapper.selectByExample(setmealExample);
推荐阅读
-
MyBatis Generator Example.Criteria 查询条件复制
-
MyBatis Generator Example.Criteria 查询条件复制
-
mybatis in 查询使用String做条件
-
Mybatis 不确定条件查询(动态语句where和if)借助实体类封装参数
-
Spring Boot2(十一):Mybatis使用总结(自增长、多条件、批量操作、多表查询等等)
-
MyBatis 关联查询的实现:使用扩展类、嵌套查询实现一对一(了解)
-
Spring Boot2(十一):Mybatis使用总结(自增长、多条件、批量操作、多表查询等等)
-
Mybatis自带的Example自定义查询条件
-
mybatis Example条件查询
-
使用mybatis****Example类,(或者)or条件查询