mybatis中时间比较
Posted 就是你baby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中时间比较相关的知识,希望对你有一定的参考价值。
<where>
<if test="start_time!=null and start_time!=‘‘">
/*方法一*/
<![CDATA[AND DATE_FORMAT(start_time, ‘%Y-%m-%d‘)>= DATE_FORMAT(#{start_time}, ‘%Y-%m-%d‘)]]>
</if>
<if test="end_time!=null and end_time!=‘‘">
/*方法二*/
and end_time<![CDATA[ <= ]]>#{end_time}
</if>
</where>
以上是关于mybatis中时间比较的主要内容,如果未能解决你的问题,请参考以下文章
MyBatis错误:invalid comparison: java.util.Date and java.lang.String