I've got the following syntax to update a field called "line1" in a mysql table called "addresses" However, instead of just replacing it, I would like to keep the original value in line1 but add my new value at the end of it with a space.
UPDATE addresses SET line1="Road" WHERE id=34
Any ideas how this could be done?
Thanks