I have 4 tables that I need to join in a query. The tables have data like this:
TimeClock -> ClockID (PK), SiteID, WorkerID, TypeID, Start, Finish
Sites -> SiteID (PK), Name
Worker -> WorkerID (PK), Name
WorkType -> TypeID (PK), Type
I need a query that will take all the data from the...