Created
January 19, 2018 16:11
-
-
Save hunterwei/3721626704d6fc6b28bf08798599a998 to your computer and use it in GitHub Desktop.
Update a table with joined table(s) in Microsoft Access database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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