zoukankan      html  css  js  c++  java
  • 【Mybatis】mybatisplus 的Wrapper查询

    Wrapper

     MP提供了很多Wrapper方便我们使用

    Wrapper条件构造抽象类,最顶端父类
    AbstractWrapper 用于查询条件封装,生成 sql 的 where 条件
    QueryWrapperEntity 对象封装操作类,不是用lambda语法
    UpdateWrapperUpdate 条件封装,用于Entity对象更新操作
    AbstractLambdaWrapper Lambda 语法使用 Wrapper统一处理解析 lambda 获取 column。
    LambdaQueryWrapper看名称也能明白就是用于Lambda语法使用的查询Wrapper
    LambdaUpdateWrapper Lambda 更新封装Wrapper

    条件构造器

    注意! xxNew 都是另起 ( ... ) 括号包裹。

    example:

    QueryWrapper<EnterpriseOrderEntity> queryWrapper = new QueryWrapper<EnterpriseOrderEntity>();      
    queryWrapper.lambda().eq(EnterpriseOrderEntity::getEnterpriseId,enterpriseId);

    条件参数说明:

    查询方式说明
    setSqlSelect 设置 SELECT 查询字段
    where WHERE 语句,拼接 + WHERE 条件
    and AND 语句,拼接 + AND 字段=值
    andNew AND 语句,拼接 + AND (字段=值)
    or OR 语句,拼接 + OR 字段=值
    orNew OR 语句,拼接 + OR (字段=值)
    eq 等于=
    allEq 基于 map 内容等于=
    ne 不等于<>
    gt 大于>
    ge 大于等于>=
    lt 小于<
    le 小于等于<=
    like 模糊查询 LIKE
    notLike 模糊查询 NOT LIKE
    in IN 查询
    notIn NOT IN 查询
    isNull NULL 值查询
    isNotNull IS NOT NULL
    groupBy 分组 GROUP BY
    having HAVING 关键词
    orderBy 排序 ORDER BY
    orderAsc ASC 排序 ORDER BY
    orderDesc DESC 排序 ORDER BY
    exists EXISTS 条件语句
    notExists NOT EXISTS 条件语句
    between BETWEEN 条件语句
    notBetween NOT BETWEEN 条件语句
    addFilter 自由拼接 SQL
    last

    拼接在最后,例如:last(“LIMIT 1”)

  • 相关阅读:
    myeclipse codelive插件关闭
    php-memcache基本用法
    css3选择器笔记
    网卡配置/etc/network/interfaces
    javascript 调用cookies
    $_FILES详解
    http_build_query
    javascript写贪吃蛇游戏(20行代码!)
    php 中date显示时间不对与Linux文件乱码问题
    const && define
  • 原文地址:https://www.cnblogs.com/zhanqing/p/15264730.html
Copyright © 2011-2022 走看看