Skip to content

Instantly share code, notes, and snippets.

@hunterwei
Created January 19, 2018 16:11
Show Gist options
  • Save hunterwei/3721626704d6fc6b28bf08798599a998 to your computer and use it in GitHub Desktop.
Save hunterwei/3721626704d6fc6b28bf08798599a998 to your computer and use it in GitHub Desktop.
Update a table with joined table(s) in Microsoft Access database
UPDATE ((TableA A
INNER JOIN TableB B ON A.ID = B.AID)
INNER JOIN TableC C ON B.ID = C.BID)
SET A.DESC = C.DESC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment