LitePal多条件+模糊查询
程序员文章站
2022-06-12 18:07:35
...
LitePal实现多个条件筛选的同时加上多个条件模糊查询:
模糊搜索(学号/姓名) + 日期时间筛选+ 状态筛选
LitePal.where("(number like ? or studentName like ?) and date= ? and status = ?", "%"+ keyWord + "%","%"+ keyWord + "%", dateStr, "0").find(StudentBean.class);
注意用"()"
推荐阅读