Mysql
 sql >> Base de données >  >> RDS >> Mysql

requête mysql - 2 clés étrangères

Attribuez un alias à vos tables lors des jointures :

SELECT
  flight.idflight,
  flight.idairline,
  flight.from_airport,
  flight.to_airport,
  flight.number,
  airport_from.name AS origin
  airport_to.name AS destination
FROM flight
  INNER JOIN airports airport_from ON flight.from_airport = airport_from.idairports
  INNER JOIN airports airport_to ON flight.to_airport = airport_to.idairports