Pages

Men

rh

7/07/2012

Does the Order of Columns in UPDATE statements Matter?


No, the order of columns in UPDATE statement does not matter for results updated.
Both the below options produce the same results.

Option 1:
UPDATE TableName
SET Col1 ='Value', Col2 ='Value2'

Option 2:
UPDATE TableName
SET Col2 ='Value2', Col1 ='Value'

No comments :

Post a Comment