select
select * from 表名 where 时间字段 BETWEEN #{startTime} and #{endTime}
或
select * from 表名
<where>
<if test="startTime != null and startTime != null">
and create_time >= #{startTime}
</if>
<if test="endTime != null and endTime != null">
and create_time <= #{endTime}
</if>
</where>
// >= 大于等于
// <= 小于等于
// < 小于
// > 大于