集計を使用して、departure_airport
をカウントできます :
select v.airline
from volo v
group by v.airline
having count(distinct departure_airport) = (select count(*) from airport);
集計を使用して、departure_airport
をカウントできます :
select v.airline
from volo v
group by v.airline
having count(distinct departure_airport) = (select count(*) from airport);