How are you doing?
You see, I'm making a logbook for private pilots. Among all the resulting entities (tables), I have two: flight and airport. This Airport table, consists of: ID, ICAO Code, Name and the FK of the city.
Among the fields of the Flight table there are two in particular: Airport_Exit and Airport_Reach. There is also an FK of the airport table.
However, how can I structure the database so that I do not have to, for example, make two additional tables: Aeropuerto_Llegada and Aeropuerto_Exit (both would contain exactly the same data, so I see it as redundant)?.
Thank you very much in advance.
Greetings!