TysonLPrice
Programmer
I'm having trouble putting together an update. The query to select the data is:
Code:
select c.coordinator, x.coordinator
from ##Xref x, Claim c (nolock)
join iwlocation (nolock) on fkiwlocation = pkiwlocation
join injuredworker iw (nolock) on fkinjuredworker = pkinjuredworker
where fkemployeraddress = 47556
and iw.SSN = x.SSN[\code]
I neeed to set the Claim table coordinator (c.coordinator)to the ##XREF table coordinator (x.Coordinator) using the same look up logic.
I can't seem to get. Can somebody help me out?