Please help me to get the right syntax for UPDATE. I'm simply trying to add a string the the current value.
UPDATE table SET company = "CURRENT VALUE + SOME STRING" WHERE id = '25' LIMIT 1 ;
So how would I put "CURRENT VALUE + SOME STRING"?
If CURRENT VALUE is "Xyz" and STRING is " abc", i need the new value to be "Xyz abc".
Thanks!🙂