Updating t-SQL using table Aliases

UPDATE Q 
SET Q.FIELDTOBESET = 'NEW VALUE' 
FROM YOUR_TABLE Q 
WHERE Q.ID = 1010011010; 

Leave a Reply