Hi Shoakat,
You don't have to use SET for each COLUMNNAME, Replace the second
SET with
,(COMMA)
Your code.
Code:
Update Table
Set FieldName = 'Africa' Set FieldName ='12112'
where FieldName = 'eric'
Modified code
Code:
Update Table
Set FieldName = 'Africa', FieldName ='12112'
where FieldName = 'eric'
Cheers!
_________________________
- Vijay G
Strive for Perfection