I have a db table with a varchar column that needs updating.
When I issue this command:
update chamber set category=category+', Restaurants' where companyName='Beach Nights'
The updated value becomes 0.
In other words, mysql is performing a mathematical calculation on the row.
What I really want is for mysql to append more data to the existing data.
Thx.