I came across a situation, where I had to write a different sort of update statement. Following was the user requirement.
UPDATE two columns A and B in a table, say MY_TABLE based on the following condition.
Update column A of MY_TABLE if a certain set of conditions met else dont update it
Update column B of MY_TABLE if a second set of certain conditions are met else dont update it
Following is the code that can be used to perform this task.
DECLARE @UPDATEQUERY VARCHAR(1000) ;
DECLARE @COMMA VARCHAR(3) ;
SET @UPDATEQUERY...