<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>

相关文章:

  • 2021-11-13
  • 2021-11-23
  • 2022-12-23
  • 2021-11-13
  • 2021-12-03
  • 2021-08-31
  • 2021-10-14
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-08
  • 2021-07-26
  • 2021-11-28
相关资源
相似解决方案