zoukankan      html  css  js  c++  java
  • mybatis-plus 条件查询方法全解

    查询方式            说明

    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")

    转载:https://blog.csdn.net/qq_32567149/article/details/80606205 

  • 相关阅读:
    Google-C++编码规范中文版.pdf
    100个gdb小技巧(v1.0).pdf
    NSIS 3.0 发布,Windows 安装程序制作工具
    python爬取各类文档方法归类汇总
    【转】openwrt中ubus
    OpenWrt源码分析之ubus
    详解C语言中的fopen()函数和fdopen()函数
    IPsec技术介绍(转)
    mxml 详解
    Delphi IDE Theme Editor, Delphi IDE 主题编辑器,支持D7~Rad Studio 10.3 RIO及Lazarus
  • 原文地址:https://www.cnblogs.com/fjl0418/p/13454078.html
Copyright © 2011-2022 走看看