目录
- 需求:查询进行中的活动数据
- 下面sql则查询的是满足以上四种需求的结果集,达标题需求
需求:查询进行中的活动数据
进行中一共有以下几种情况:
1.开始时间为空,结束时间为空, 此结果数据将永远为进行中的数据
2.开始时间为空,结束时间不为空,则当前时间在结束时间之前,为进行中的数据
3.开始时间不为空,结束时间为空,则当前时间在开始时间之后,为进行中的数据
4.开始时间不为空,结束时间不为空,则当前时间在开始与结束时间段之内的数据为进行中数据
下面sql则查询的是满足以上四种需求的结果集,达标题需求
select * from 表名 where 1=1 and(start_time is null or start_time<now()) and(end_time is null or end_time>now())
mybatis写法,开始时间与结束时间传入参数允许为空
如图所示:
<if test="record.startdate != null and record.startdate != '' or record.enddate != null and record.enddate != '' "> and id in (select id from rht_product_price where 1=1 <if test="record.startdate != null and record.startdate != ''"> and start_date <= #{record.startdate,jdbctype=varchar} </if> <if test="record.enddate!= null and record.enddate != ''"> and end_date >= #{record.enddate,jdbctype=varchar} </if> ) </if>
到此这篇关于mysql判断当前时间是否在开始与结束时间之间且开始与结束时间允许为空的文章就介绍到这了,更多相关mysql判断当前时间是否在开始与结束时间之间内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!