I would like to append some data to already existing data, something like
720967537 to 255720967537. All the data in my column is in that format. Is there any way I can do that to all of the records that are in my MySQL database?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
|
||||
|
|
|
You can use the CONCAT() function:
Results:
If you want to UPDATE the values in your table, you could do the following:
|
|||||||
|