MySQL REPLACE Function

Example

Replace “SQL” with “HTML”:

SELECT REPLACE("SQL Tutorial", "SQL", "HTML");

Definition and Usage

The REPLACE() function replaces all occurrences of a substring within a string, with a new substring.

Note: This function performs a case-sensitive replacement. Continue reading MySQL REPLACE Function