标签:span format SQ ring class 解决 spring col art
mybatis中查询时间范围处理:
例如2018-05-22 ~2018-05-23
则查出来的数据仅能查到2018-05-22的,查不到2018-05-23的数据!
为什么会这样?
明明时间字段在spring MVC中已经处理了,已经没有2018-05-23 00:00:00.0,已经获取到了日期,去掉了时分秒,为什么传入mybatis进行sql查询的时候依旧会变成这样?
<if test="saleDateStart != null"> and DATE_FORMAT(info.sale_date,‘%Y-%m-%d‘) >= #{saleDateStart} </if> <if test="saleDateEnd != null"> and DATE_FORMAT(info.sale_date,‘%Y-%m-%d‘) <= #{saleDateStart} </if>
问题就出在 #{时间字段} 这个地方,
虽然这个时候查询的时候传入的时间字段值 是 年月日格式 没有时分秒 但是mybatis在生成sql的时候 ,依旧将 年月日进行格式化 成了 年月日 时分秒 类型。
解决方法:
<if test="saleDateStart != null"> and DATE_FORMAT(info.sale_date,‘%Y-%m-%d‘) >= DATE_FORMAT(#{saleDateStart},‘%Y-%m-%d‘) </if> <if test="saleDateEnd != null"> and DATE_FORMAT(info.sale_date,‘%Y-%m-%d‘) <= DATE_FORMAT(#{saleDateStart},‘%Y-%m-%d‘) </if>
这样就能保证 mybatis在处理sql的时候,按照年月日的格式去处理参数!!!
标签:span format SQ ring class 解决 spring col art
原文地址:https://www.cnblogs.com/sxdcgaq8080/p/9099806.html