I need to create a query with multiple tables for a project for school, but I'm not really good at this.
I've got 2 tables.
The first is a table with trajects:
departure_time (time)
arrival_time (time)
departure_id (int)
arrival_id (int)
The second table holds the names of the locations:
location_id (int)
name (varchar)
I would need a query that gets the departure_time, arrival_time and the names of the departure place and the arrival place.