Nếu FK trong Posts.*_Airport_code
không tham chiếu đến Airports.id
như MJB giả định nhưng với Airports.Airport_code
sau đó
SELECT
APS.Airport_name AS Source,
APD.Airport_name AS Destination,
Posts.date_of_departure
FROM Posts
INNER JOIN Airports APS ON(APS.Airport_code = Posts.Source_Airport_code)
INNER JOIN Airports APD ON(APD.Airport_code = Posts.Destination_airport_code)