Hi Guys
Not sure if I'm going in the right direction, but am stumped at this one!
I have a few tables:
tblDailyTripLog
ID; TripDate; Departing; ETD; Destination; Depot; Driver
tblDepots
ID; Name
tblDrivers
ID; Name
Now, in tblDailyTripLog.driver, the tblDriverID is stored. Same goes for Destination, Depot & Depart, the tblDepots.ID gets stored which can or will differ....
Now, when do a query, how would I show 3 different joins to the same table (ie. tblDepots) to get the name, instead of the ID for Departing, depot & Destination?
I've tried doing a Left Join and then another LEft Join, but its not working....
Not sure if I'm going in the right direction, but am stumped at this one!
I have a few tables:
tblDailyTripLog
ID; TripDate; Departing; ETD; Destination; Depot; Driver
tblDepots
ID; Name
tblDrivers
ID; Name
Now, in tblDailyTripLog.driver, the tblDriverID is stored. Same goes for Destination, Depot & Depart, the tblDepots.ID gets stored which can or will differ....
Now, when do a query, how would I show 3 different joins to the same table (ie. tblDepots) to get the name, instead of the ID for Departing, depot & Destination?
I've tried doing a Left Join and then another LEft Join, but its not working....