Oracle資料庫資料遷移到MySQL資料庫時間格式問題
1.包含年月日?
在oracle資料庫中,日期格式如下:
<if test="params.startTime != null">
and t.KPRQ <![CDATA[ >= ]]>
to_date(#{params.startTime,jdbcType=VARCHAR},'yyyy-MM-dd')
</if>
<if test="params.endTime != null">
and t.KPRQ <![CDATA[ <= ]]>
to_date(#{params.endTime,jdbcType=VARCHAR},'yyyy-MM-dd')+1
</if>
在MySQL中,日期格式改為如下:
<if test="params.startTime != null">
and t.KPRQ <![CDATA[ >= ]]>
date_format(#{params.startTime,jdbcType=VARCHAR},'%Y-%m-%d')
</if>
<if test="params.endTime != null">
and t.KPRQ <![CDATA[ < ]]>
date_add(date_format(#{params.endTime,jdbcType=VARCHAR},'%Y-%m-%d'), INTERVAL 1 day)
</if>
2.只包含年月
在Oracle中,日期格式如下:
<if test='params.startMonth != "" and params.startMonth != null'>
and <![CDATA[ fy.jbsj >= to_date(#{params.startMonth,jdbcType=VARCHAR},'yyyy-MM')]]>
</if>
<if test='params.endMonth != "" and params.endMonth != null'>
and <![CDATA[ fy.jbsj < to_date(#{params.endMonth,jdbcType=VARCHAR},'yyyy-MM')+1]]>
</if>
在MySQL中日期格式如下:
<if test='params.startMonth != "" and params.startMonth != null'>
and <![CDATA[ fy.jbsj >= date_format(CONCAT(#{params.startMonth,jdbcType=VARCHAR},'-01'),'%Y-%m-%d')]]>
</if>
<if test='params.endMonth != "" and params.endMonth != null'>
and <![CDATA[ fy.jbsj < date_add(date_format(CONCAT(#{params.endMonth,jdbcType=VARCHAR},'-01'),'%Y-%m-%d'),interval 1 MONTH)]]>
</if>