我正在尝试获取座位更多为 0 的航班。我在 MySQL 中有 3 个表
1. Sector
2. Flights
3. Aircraft
请按 1,2 和 3 的顺序查看表格结构的图像
我正在写这个 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
此查询给出错误 -
子查询返回超过 1 行
因为子查询正在重新调整多个航班号。所以我需要一些帮助如何获得座位超过0的航班号