Curriculum
Course: MYSQL
Login

Curriculum

MYSQL

MySQL References

0/140
Text lesson

REPLACE

Example

Substitute “SQL” with “HTML”.

SELECT REPLACE(“SQL Tutorial”“SQL”“HTML”); 

Definition and Usage

The REPLACE() function substitutes all instances of a substring within a string with a new substring. It’s important to note that this function performs a case-sensitive replacement.

Syntax

REPLACE(stringfrom_stringnew_string)

Parameter Values

Parameter

Description

string

Input required: The original string in which replacements will be made.

from_string

Input required: The substring that will be replaced within the original string.

new_string

Input required: The new substring that will replace occurrences of the specified substring within the original string.

Technical Details

Works in: From MySQL 4.0

More Examples

Example

Substitute “X” with “M”.

SELECT REPLACE(“XYZ FGH XYZ”“X”“M”); 

Example

Substitute “X” with “M”.

SELECT REPLACE(“XYZ FGH XYZ”“X”“m”); 

Example

Replace occurrences of “x” with “m”.

SELECT REPLACE(“XYZ FGH XYZ”“x”“m”);