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>
posted @ 2020-06-25 17:08  就是你baby  阅读(10356)  评论(0编辑  收藏  举报