Cinema booking systems need to show users seats that are next to each other. A seat is considered available if the free column is 1.
Write an SQL query to report all the consecutive available seats in the movie theater.
| seat_id(INTEGER) | free(INTEGER) |
|---|---|
| 1 | 1 |
| 2 | 0 |
| 3 | 1 |
| 4 | 1 |
| 5 | 1 |
| seat_id(INTEGER) |
|---|
| 3 |
| 4 |
| 5 |