mysql mybatis 日期查询
Posted hoge66的专栏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql mybatis 日期查询相关的知识,希望对你有一定的参考价值。
<select id="selectInParamRecord" parameterType="map" resultType="com.thinkgem.jeesite.modules.ada.entity.ParamRecordDto"> SELECT serial_num AS serialNum, creat_time AS createDate FROM t_gl_adapter_param_input WHERE service_type = ‘${insertIn.serviceType}‘ <if test="insertIn.createDate != null and insertIn.createDate != ‘‘"> <![CDATA[ and DATE_FORMAT(creat_time, ‘%Y-%m-%d‘)>=DATE_FORMAT(#{insertIn.createDate}, ‘%Y-%m-%d‘) ]]> </if> </select>
以上是关于mysql mybatis 日期查询的主要内容,如果未能解决你的问题,请参考以下文章
SSM-MyBatis-05:Mybatis中别名,sql片段和模糊查询加getMapper