JohnnyLong
Programmer
I have never been able to get my head around Update queries with joins. Can anyone help? I need to update the text field CVText on table rc_CVData with tblApplicants2.CV_TEXT. I have to join these two tables through table rc_Candidates using the Key Applicants_APP_ID.
UPDATE rc_CVData
SET rc_CVData.CVText = tblApplicants2.CV_TEXT
FROM rc_Candidates
RIGHT JOIN rc_CVData.CandidateID = rc_Candidates.CandidateID
RIGHT JOIN rc_Candidates.Applicants_APP_ID = tblApplicants2.Applicants_APP_ID
I think I have to use aliases!
Any help much appreciated.
UPDATE rc_CVData
SET rc_CVData.CVText = tblApplicants2.CV_TEXT
FROM rc_Candidates
RIGHT JOIN rc_CVData.CandidateID = rc_Candidates.CandidateID
RIGHT JOIN rc_Candidates.Applicants_APP_ID = tblApplicants2.Applicants_APP_ID
I think I have to use aliases!
Any help much appreciated.