You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
279 B

SELECT
COUNT(*)
FROM
routes
INNER JOIN
airports
AS
origin
ON
origin.iata_faa = routes.origin_code
INNER JOIN
airports
AS
destination
ON
destination.iata_faa = routes.dest_code
WHERE
origin.city = 'New York'
AND
destination.city = 'Paris';