其他分享
首页 > 其他分享> > QueryWrapper-使用方法

QueryWrapper-使用方法

作者:互联网

mybatis plus的官方文档

https://mp.baomidou.com/guide/

??queryWrapper是什么

 

 

Wrapper : 条件构造抽象类,最顶端父类,抽象类中提供4个方法西面贴源码展示
AbstractWrapper : 用于查询条件封装,生成 sql 的 where 条件
AbstractLambdaWrapper : Lambda 语法使用 Wrapper统一处理解析 lambda 获取 column。
LambdaQueryWrapper :看名称也能明白就是用于Lambda语法使用的查询Wrapper
LambdaUpdateWrapper : Lambda 更新封装Wrapper
QueryWrapper : Entity 对象封装操作类,不是用lambda语法
UpdateWrapper : Update 条件封装,用于Entity对象更新操作

1.单表查询

@GetMapping("/list")
public TableDataInfo list(Student student){
    LambdaQueryWrapper<Student> lqw = new LambdaQueryWrapper<Student>();
    lqw.eq(Student::getName, student.getName());
    lqw.like(Student::getClass,student.getClass());
    lqw.between("age",student.getAge1(),student.getAge2());
    lqw.orderByAsc("age");
    List<Student> list = studentService.list(lqw);
}

以上代码对应的sql为:

select * from student where name = '?' and class like '%?%' and age between '?' and '?' order by '?' asc

QueryWrapper其实可以理解成一个放查询条件的包装工具,我们把查询条件放在里面,他就会自动按照对应的条件进行查询数据。

根据不同的查询要求,有不同的用法,常用到的比如:eq、like、and、or、isNull、isNotNull、ne、likeRight、between等;使用方法及说明见下图。

函数名 说明 例子
eq 等于 例:eq(“name”,“张子”) ===> name = ‘张子’
ne 不等于 例:ne(“name”,“张子”) ===> name <> ‘张子’
gt 大于 例:gt(“age”,“18”) ===> age>18
lt 小于 例:lt(“age”,“18”) ===> age<18
between 在值1到值2之间 例:between(“age”,18,30) ===> 18<age<30’
like 模糊查询 例:like(“name”,“张”) ===> name like ‘%张%’
isNull 字段为NULL 例:isNull(“name”) ===> name is null

2.多表联合查询

//Controller
@GetMapping("/listAndClass")
public TableDataInfo listAndClass(Student student)
{
    QueryWrapper<Student > qw = new QueryWrapper<Student >();
    if(StringUtils.isNotBlank(student.getName())){
        qw.eq("s.name",student.getName());
    }
    if(StringUtils.isNotBlank(student.getClassName())){
        qw.like("c.name",student.getClassName());
    }
    startPage();
    List<Student > list = studentService.listAndClass(qw);
    return getDataTable(list);
}

//Service
 List<Student> listAndClass(QueryWrapper<Student> qw);

//Service impl
@Override
public List<Student> listAndClass(QueryWrapper<Student> qw) {
    return this.getBaseMapper().listAndClass(qw);
}
1、也可以用xml namespace + id来映射 就不用判空 可以用一些动态sql
2、下面是注解方法实现
3、当然还可以用方法嵌套 //Mapper

@Select("select s.*,c.name from student s left join class c on s.id = c.student_id "+ "${ew.customSqlSegment}") List<YwSpaqjgDj> listAndClass(@Param(Constants.WRAPPER) QueryWrapper<Student> qw);

 

标签:QueryWrapper,name,qw,age,listAndClass,student,使用,方法
来源: https://www.cnblogs.com/origin-zy/p/16480513.html