编辑
2022-10-28
实用工具
00
请注意,本文编写于 888 天前,最后修改于 763 天前,其中某些信息可能已经过时。

目录

函数  说明  SQL语法

函数  说明  SQL语法

eq   等于   = ne   不等于  <> gt   大于   > lt   小于   < ge   大于等于   >= le   小于等于   <= or   或者   or and   并且   and like   模糊查询包含s   like %s% notLike   模糊查询不包含s   not like %s% likeLeft   左匹配模糊查询   like %s likeRight   右匹配模糊查询   like s% between   在v1到v2之间   between v1 and v2 notBetween   不在v1到v2之间   not between v1 and v2 isNull   是否为空   is null isNotNull   是否不为空   is not null in   field在[a, b, c]之中   field in (a, b, c) notIn   field不在在[a, b, c]之中   field not in (a, b, c) orderByAsc   升序排序   order by field asc orderByDesc   降序排序   order by field desc groupBy   分组   group by having   分组过滤   having

mybatisPlus 2.4.0 or的写法

queryWrapper.and(i->i.likeRight("INPUT_CODE",request.getInput().toUpperCase()) .or().likeRight("RECALL_PURPOSE_NAME",request.getInput()) );

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!