1、数据库中字段createtime类型为String,格式为:06-08-2018 10:50:24;
2、以createtime做条件做时间范围内的查询操作:
将String转为date:
<if test="start != null">
and STR_TO_DATE(p.createtime,'%d-%m-%Y %H:%i:%s') > STR_TO_DATE(#{start},'%d-%m-%Y %H:%i:%s')
</if>
<if test="end != null">
and STR_TO_DATE(p.createtime,'%d-%m-%Y %H:%i:%s') < STR_TO_DATE(#{end},'%d-%m-%Y %H:%i:%s')
</if>