mybatis中时间比较
时间:2020-06-25 17:29:28
收藏:0
阅读:695
<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>
原文:https://www.cnblogs.com/cai170221/p/13192230.html
评论(0)