如何查询包含多个日期值的字段,并获取在给定时间范围内的数据?

如何查询包含多个日期值的字段,并获取在给定时间范围内的数据?

如何同时查询多个日期值的同个字段以获取特定时间范围的数据?

问题:

字段 realstarttime 包含逗号分隔的多个时间值,例如:2022-09-14 11:38:21,2022-09-14 18:00:00。我们需要根据给定的时间范围查询具有至少一个 realstarttime 值在此范围内的记录。

mybatis 查询(支持单个时间值):

<select id="geteventplanbycodedatelimitsimple" resultmap="eventplanrecordallmap">
    select
        epr.*
    from
        event_plan_record epr
    where
        epr.realstarttime between #{startdate} and #{enddate}
    order by epr.realstarttime desc limit #{page},#{count};
</select>

解决方案:

为了同时查询多个日期值,我们需要将 realstarttime 分割成单独的日期值并判断它们与所给时间范围的关系。

select
    epr.*
from
    event_plan_record epr
where
    substring_index('epr.realstarttime', ',', 1) between #{startdate} and #{enddate} 
    or substring_index('epr.realstarttime', ',', -1) between #{startdate} and #{enddate}
    or #{startdate} between substring_index('epr.realstarttime', ',', 1) and substring_index('epr.realstarttime', ',', -1)
    or #{enddate} between substring_index('epr.realstarttime', ',', 1) and substring_index('epr.realstarttime', ',', -1)
order by epr.realstarttime desc limit #{page},#{count};

使用示例:

// 假设 startDate 和 endDate 已赋值
Map<String, Object> params = new HashMap<>();
params.put("startDate", startDate);
params.put("endDate", endDate);
params.put("page", 0);
params.put("count", 10);

List<EventPlanRecord> result = sqlSession.selectList("getEventPlanByCodeDateLimit", params);

通过这种方式,我们可以查询出 realstarttime 具有至少一个时间值在此时间范围内的所有记录。

以上就是如何查询包含多个日期值的字段,并获取在给定时间范围内的数据?的详细内容,更多请关注硕下网其它相关文章!