SyntaxFix
Write A Post
Hire A Developer
Questions
The syntax for using an alias in an update statement on SQL Server is as follows:
UPDATE Q SET Q.TITLE = 'TEST' FROM HOLD_TABLE Q WHERE Q.ID = 101;
The alias should not be necessary here though.