Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SELECT attendants.attendant_id, attendants.name
FROM flights JOIN attendant_flights ON flights.flight_number = attendant_flights.flight_number JOIN attendants ON attendant_flights.attendant_id = attendants.attendant_id WHERE flights.flight_date = '2021-04-19';
- Loading branch information