okay, another newbie update question. I really appreciate any help I can get on this. I think I have everything worked out here except for the request.processed.I am updating the data in one table, but want to mark the records that I have udpated from the request table and changed the processed field from false to true. I am getting an error back:Msg 4104, Level 16, State 1, Line 1The multi-part identifier "request.processed" could not be bound.
UPDATE emp_time_tableSET time_accrued = request.request_duration - emp_time_table.time_accrued, request.processed = 'True'FROM request INNER JOIN emp_time_table AS emp_time_table_1 ON request.emp_id = emp_time_table_1.emp_idWHERE emp_time_table_1.to_type_id = request.time_off_id AND request.processed = 'False' AND request.request_time_taken = 'True'