これを試してください:
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
これは、4つの連続したシートを選択するように設定されています。 「4」のすべてのインスタンスを希望のシート数に調整して、必要なものを取得します。