mildbyte/weather

Provenance

1 Dependency
 
1 Table
  • IMPORT INTO flights
    SELECT fly_month
         , sum(passengers) AS total_passengers
    FROM flights
    WHERE ((origin_airport = 'RDU')
       OR (destination_airport = 'RDU'))
    GROUP BY fly_month
    ORDER BY fly_month