I need to update a field in a temp table. When I run the Update Query, All I get is a view of the existing field data in the table I want to be updated. No update takes place.
UPDATE ztrptElapsed SET StartDate = (SELECT StepDateStart FROM tblPersons_Steps WHERE tblPersons_Steps.ISInvID = ZtrptElapsed.IsInvID AND tblPersons_Steps.StepID = 100);
UPDATE ztrptElapsed SET StartDate = (SELECT StepDateStart FROM tblPersons_Steps WHERE tblPersons_Steps.ISInvID = ZtrptElapsed.IsInvID AND tblPersons_Steps.StepID = 100);