美文网首页
2020-03-06 时间段的查询

2020-03-06 时间段的查询

作者: 雷爷_fefc | 来源:发表于2020-03-19 12:13 被阅读0次

    SELECT * FROM sc_user WHERE (CASE WHEN #{开始时间} IS NOT NULL AND "#{开始时间}"!="" THEN (开始时间的字段>="#{开始时间}") ELSE (1=1) END )
    AND (CASE WHEN #{结束时间} IS NOT NULL AND "#{结束时间}"!="" THEN (结束时间的字段<="#{结束时间}") ELSE (1=1) END )

    如果数据库是dateTime类型的(带有时分秒的)
    前台是date类型 不带时分秒的 可以用DATE(visitor_time) 将数据库的进行转化 去掉时分秒 变为java.sql.Date 类型后进行 时间比较
    例如
    @Select("Select * from c_visit where "+ "(case when #{visitorName} is not null and #{visitorName}!= '' then (visitor_name like '%{visitorName}%') else (1=1) end ) and "+" (case when #{seniorName} is not null and #{seniorName}!= '' then (senior_name like '%{seniorName}%') else (1=1) end) and "+" (case when #{cVistBeginTime} is not null and #{cVistBeginTime}!= '' then (DATE(visitor_time) >= #{cVistBeginTime}) else (1=1) end ) and (case when #{cVistEndTime} is not null and #{cVistEndTime} != '' then (#{cVistEndTime} <= DATE(departure_time) ) else (1=1) end ) and delete_state = 1")
    List<Map<String, Object>> queryCVistInfo(CVist cVist, Date cVistBeginTime, Date cVistEndTime);

    相关文章

      网友评论

          本文标题:2020-03-06 时间段的查询

          本文链接:https://www.haomeiwen.com/subject/lbnwrhtx.html