Prøv dette:
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
Dette er indstillet til at vælge fire på hinanden følgende pladser. Juster alle forekomster af "4" til det ønskede antal pladser for at få det, du ønsker.