1
select `labtech`.`computers`.`Name` AS `ComputerName`,`labtech`.`locations`.`Name` AS `LocationName`,`labtech`.`clients`.`Name` AS `ClientName`,`labtech`.`processes`.`Name` AS `ProcessName`,`labtech`.`processes`.`ProcID` AS `ProcID`,`labtech`.`processes`.`Priority` AS `Priority`,`labtech`.`processes`.`CreationDate` AS `CreationDate`,`labtech`.`processes`.`ProcPath` AS `ProcPath`,`labtech`.`processes`.`CPUTime` AS `CPUTime`,`labtech`.`processes`.`MemSize` AS `MemSize`,`labtech`.`processes`.`Args` AS `Args` from (((`labtech`.`processes` join `labtech`.`computers` on((`labtech`.`computers`.`ComputerID` = `labtech`.`processes`.`ComputerID`))) join `labtech`.`clients` on((`labtech`.`clients`.`ClientID` = `labtech`.`computers`.`ClientID`))) join `labtech`.`locations` on((`labtech`.`locations`.`LocationID` = `labtech`.`computers`.`LocationID`)))