Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Finden Sie Datumslücken mit mysql

Dies sollte das richtige Ergebnis liefern:

select
  id,
  min(startDate) as startFreeDate,
  count(*) - (endDate is null) numFreeDays
from (
  select
    pb1.id,
    pb1.bookingDate startDate,
    min(pb2.bookingDate) endDate
  from
    pricesBookings pb1 left join pricesBookings pb2
    on pb1.id=pb2.id
       and pb2.price>0
       and pb2.bookingDate>pb1.bookingDate
  where
    pb1.price=0
  group by
    pb1.id,
    pb1.bookingDate
) s
group by id, endDate
order by id, startDate

siehe hier .

Wenn Sie nach allen freien Slots von beispielsweise 14 Tagen suchen müssen, können Sie HAVING:

hinzufügen
group by id, endDate
having count(*) - (endDate is null) >= 14
order by id, startDate