在mybatis中写sql获取时间从00:00:00到23:23:59的数据
Posted 疯狂小公举
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在mybatis中写sql获取时间从00:00:00到23:23:59的数据相关的知识,希望对你有一定的参考价值。
在mybatis中写sql获取时间从00:00:00到23:23:59的数据
<if test="taskSearcherVo.beginTime!=null and taskSearcherVo.beginTime!=''">
and b.created >=DATE_FORMAT(#taskSearcherVo.beginTime,'%Y-%m-%d 00:00:00')
</if>
<if test="taskSearcherVo.endTime!=null and taskSearcherVo.endTime!=''">
AND b.created <![CDATA[ <= ]]>DATE_FORMAT(#taskSearcherVo.endTime,'%Y-%m-%d 23:59:59')
</if>
以上是关于在mybatis中写sql获取时间从00:00:00到23:23:59的数据的主要内容,如果未能解决你的问题,请参考以下文章
Mybatis 和Ibatis实现插入中,我要同时插入多张表,可不可以在<insert>标签中写多小sql insert语句?