MybatisExample的高级用法

更新时间:2023-06-28 09:21:00 阅读: 评论:0

MybatisExample的⾼级⽤法近⼏个项⽬⼀直使⽤的mybatis来对数据库做查询,期间⽤到了很多⾼效简洁的查询⽅法,特此记录和分享。⼀. mapper接⼝中的函数及⽅法
⽅法名功能int countByExample(UrExample example)按条件计数int deleteByPrimaryKey(Integer id)按主键删除int deleteByExample(UrExample example)按条件查询String/Integer inrt(Ur record)插⼊数据(返回值为ID)
Ur lectByPrimaryKey(Integer id)按主键查询ListlectByExample(UrExample example)按条件查询
公允价值变动损益借贷方向
ListlectByExampleWithBLOGs(UrExample example)按条件查询(包括BLOB字段)。只有当数据表中的字段类型有为⼆进制的才会产
⽣。
int updateByPrimaryKey(Ur record)按主键更新int updateByPrimaryKeySelective(Ur record)按主键更新值不为null的字段int updateByExample(Ur record, UrExample example)按条件更新
捣蛋鬼int updateByExampleSelective(Ur record, UrExample
example)
按条件更新值不为null的字段
明亮的近义词⼆. example实例⽅法
example ⽤于添加条件,相当于where后⾯的部分,理论上单表的任何复杂条件查询都可以使⽤example来完成。
⽅法说明
example.tOrderByClau(“字段名 ASC”);添加升序排列条件,DESC为降序example.tDistinct(fal)去除重复,boolean型,true为选择不重复的记录。
example.and(Criteria criteria)为example添加criteria查询条件,关系为与
<(Criteria criteria)为example添加criteria查询条件,关系为或criteria.andXxxIsNull添加字段xxx为null的条件
criteria.andXxxIsNotNull添加字段xxx不为null的条件criteria.andXxxEqualTo(value)添加xxx字段等于value条件
criteria.andXxxNotEqualTo(value)添加xxx字段不等于value条件
criteria.andXxxGreaterThan(value)添加xxx字段⼤于value条件criteria.andXxxGreaterThanOrEqualTo(value)添加xxx字段⼤于等于value条件criteria.andXxxLessThan(value)添加xxx字段⼩于value条件criteria.andXxxLessThanOrEqualTo(value)添加xxx字段⼩于等于value条件criteria.andXxxIn(List<?>)添加xxx字段值在List<?>条件
criteria.andXxxNotIn(List<?>)添加xxx字段值不在List<?>条件
criteria.andXxxLike(“%”+value+”%”)添加xxx字段值为value的模糊查询条件
⽅法说明
criteria.andXxxNotLike(“%”+value+”%”)添加xxx字段值不为value的模糊查询条件criteria.andXxxBetween(value1,value2)添加xxx字段值在value1和value2之间条件
criteria.andXxxNotBetween(value1,value2)添加xxx字段值不在value1和value2之间条件三. 使⽤案例
>**1.基本字段查询**
// 1.使⽤criteria
Example example =new Example(Ur.class);
Criteria criteria = ateCriteria();
criteria.andEqualTo("name", name);
criteria.andNotEqualTo("id", id);
criteria.andEqualTo("urId", uid);
List<Ur> list = urMapper.lectByExample(example);胃酸烧心
// 不使⽤criteria,实则example.and()本质底层还是返回的criteria,倒是可以简便写法。
Example example =new Example(Ur.class);
example.and()
.andEqualTo("name", name)
.andEqualTo("id", id)
.
andEqualTo("urId", uid);
蛟龙号简笔画List<Ur> list = urMapper.lectByExample(example);
等效于:lect * from ur where name = #{name} and id = #{id} and uid = #{uid}
2. and or 查询
Example example =new Class());
// where 条件
Criteria criteria = ateCriteria();
Criteria criteria1 = ateCriteria();
criteria.andIn("id", ids);
手机139邮箱
example.and(criteria1);
example.and().andEqualTo("status", staus)
等效于:where id in ( #{ids}) and ( name like concat(‘%’, #{name},’%’) or des like concat(‘%’, #{des},’%’)) and status = #{status}注意:如果不加 example.and(criteria1);,则默认example只添加⽣成的第⼀个criteria,criteria1 将不会加到此条件中
一年级简单的画画2. 数组参数的条件查询
public Example test(List<String> names, String x){
Example example =new Class());
吉首大学是一本还是二本example.and().andEqualTo("x", x)
Example.Criteria criteria = ateCriteria();
for(String str : names){
}
example.and(criteria);
List<Ur> list = urMapper.lectByExample(example);
等效于:where x = #{x} and ( name like concat(‘%’, #{name1},’%’) or name like concat(‘%’, #{name2},’%’))
}

本文发布于:2023-06-28 09:21:00,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1058516.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:条件   添加   查询   字段
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图