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 | |
SET TableA.FullName = B.FullName | |
FROM TableB AS B | |
WHERE TableA.AccountID = B.Account_ID |
sql server - SQL update from one Table to another based on a ID match - Stack Overflow