mybatis框架支持直接用>=或<=查询日期范围,如:
and timer.create_time >= #{startTime} and timer.create_time <= #{endTime}
问题:开始时间和结束时间是同一个日期,就查不出来
解决方法:用DATE_FORMAT转换日期
= #{ew.plannedStartDate} ]]> ew.plannedEndDate} ]]>
mybatis -plus框架中:
.apply(ObjectUtil.isNotEmpty(dto.getStartTime()),"planned_complete_date >= DATE_FORMAT('"+dto.getStartTime()+"','%Y-%m-%d')").apply(ObjectUtil.isNotEmpty(dto.getEndTime()),"planned_complete_date <= DATE_FORMAT('"+dto.getEndTime()+"','%Y-%m-%d')");
来源地址:https://blog.csdn.net/qq_42583263/article/details/126850940