I am having the table with the following structure
----------------------------
id content
---------------------------
1 abc
2 bca
---------------------------
I want to append the character ‘d’ with the field ‘content’ …
So i want the table structure as follows
----------------------------
id content
---------------------------
1 abcd
2 bca
---------------------------
How can i do this..
You can use the
CONCAT, like soYou can also specify a
WHEREclause to determine which rows to update. Something like: