I'm getting and error using this syntax:
update table set field1 = (field1+' - '+field2) where field1 = 'somevalue'
It's not too happy with doing this for me. I know that the '+' for concatenation works in my select statements, so that is the right syntax. There is something else at play here... and I tried removing the parenthesis too.
Example:
if field1 = 'Cheese' and field2 = 'ConQueso'
then my update should set all records where field1 = 'Cheese' to field1 = 'Cheese - ConQueso'
EDIT:
Both fields are text fields