Let say I have something like this:
id | title |
1 | First row |
Now I want to update that value to be: First row is here, by just adding is here. And as you think, there is more than one row, and I want to update all the rows dynamically.
UPDATE posts SET title=title+' is here'
I know that the above is wrong, I just thought that since it works with numbers, maybe it will also with text, but it doesn't.