错误代码:

<if test="startDate!=null and startDate!=''">
AND to_char(o.order_time, 'yyyy-mm-dd') <![CDATA[>=]]> #{startDate}
</if>
<if test="endDate!=null and endDate!=''">
AND to_char(o.order_time, 'yyyy-mm-dd') <![CDATA[<=]]> #{endDate}
</if>

原因分析:mysql中没有to_char函数,应该使用date_format,日期转为字符串使用 date_format(create_time,’%Y-%m-%d %H:%i:%s’)

修改如下:

<if test="startDate!=null and startDate!=''">
                AND date_format(o.order_time, '%Y-%m-%d') <![CDATA[>=]]> #{startDate}
            </if>
            <if test="endDate!=null and endDate!=''">
                AND date_format(o.order_time, '%Y-%m-%d') <![CDATA[<=]]> #{endDate}
            </if>

 

posted on 2022-08-17 10:53  周文豪  阅读(7449)  评论(0编辑  收藏  举报