mybatis Example Criteria like 模糊查询
程序员文章站
2024-03-02 09:10:46
...
TOrderExample ex = new TOrderExample();
TOrderExample.Criteria ex_ca = ex.createCriteria();
if(StringUtils.isNotBlank(q.getOrderInfo())){
//通配符%需要手动加上
ex_ca.andOrderInfoLike("%"+q.getOrderInfo()+"%");
}
推荐阅读
-
mybatis Example Criteria like 模糊查询
-
mybatis Example Criteria like 模糊查询
-
使用mybatis-generator生成的Example,快速分页查询魔板代码
-
使用mybatis example 和 java 8的特性来实现多表关联且带有查询条件的查询
-
Mybatis中的Criteria条件查询
-
Mysql 使用通配符(%,_,[ ],[^])进行多条件模糊查询(like,regexp)
-
mysql模糊查询like/REGEXP
-
MySQL:模糊查询LIKE、REGEXP、IN
-
mysql模糊查询like和regexp小结
-
利用MyBatis进行不同条件的like模糊查询的方法