Mysql
 sql >> Database >  >> RDS >> Mysql

selezionando numeri consecutivi utilizzando la query SQL

Prova questo:

select seat, status
from seats
where seat >= (
   select a.seat
   from seats a
      left join seats b on 
         a.seat < b.seat and
         b.seat < a.seat + 4 and
         b.status = 'Available'
   where a.status = 'Available'
   group by a.seat
   having count(b.seat)+1 = 4
   )
limit 4

Questo è impostato per selezionare quattro seggi consecutivi. Regola tutte le istanze di "4" sul numero di postazioni desiderato per ottenere ciò che desideri.