MySQL INSERT() Function
Example
Insert the string “Example” into the string “Iampsp.com”. Replace the first nine characters:
SELECT INSERT("Iampsp.com", 1, 9, "Example");
Definition and Usage
The INSERT() function inserts a string within a string at the specified position and for a certain number of characters. Continue reading MySQL INSERT Function