sql >> Databasteknik >  >> RDS >> Mysql

Hitta datumluckor med mysql

Detta bör ge rätt resultat:

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

se den här .

Om du behöver söka efter alla gratis slots på till exempel 14 dagar kan du lägga till HAVING:

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


  1. Kör uppskjuten trigger endast en gång per rad i PostgreSQL

  2. Mysql-fråga med Left Join är för mycket långsam

  3. Användarkontohantering, roller, behörigheter, autentisering PHP och MySQL - Del 4

  4. Formatera ett tal som valuta i SQLite