Puede usar la agregación y contar el departure_airport
:
select v.airline
from volo v
group by v.airline
having count(distinct departure_airport) = (select count(*) from airport);
Puede usar la agregación y contar el departure_airport
:
select v.airline
from volo v
group by v.airline
having count(distinct departure_airport) = (select count(*) from airport);