Prueba esto:
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
Esto está configurado para seleccionar cuatro asientos consecutivos. Ajuste todas las instancias de "4" al número deseado de asientos para obtener lo que desea.