I am trying to get the flights no whose seats are more 0. I have 3 table in MySQL
1. Sector
2. Flights
3. Aircraft
please see the image for structure of table in sequence of 1,2 and 3

I am writting this SQL
select * from aircraft
where aircrafttypeID=
(select aircrafttypeID
from sector,flights
where source like 'Kolkata'
and destination like 'Ahmedabad'
and sector.sectorID=flights.sectorID)
and bseats>0
This query is giving error -
Subquery returns more than 1 row
because subquery is retuning multiple flight numbers. So I need some help how can get those Flights Number whose seats are more than 0
=within...