在 SQL 中,可以使用内置的 REPLACE()
函数来替换子字符串。REPLACE()
函数的语法如下:
REPLACE(original_string, string_to_replace, replacement_string)
参数说明:
original_string
:需要进行替换操作的原始字符串。string_to_replace
:需要被替换的子字符串。replacement_string
:用于替换指定子字符串的新字符串。以下是一个使用 REPLACE()
函数的示例:
假设有一个名为 employees
的表,其中包含一个名为 email
的列,现在需要将所有包含 @example.com
的电子邮件地址更改为 @newdomain.com
。
UPDATE employees
SET email = REPLACE(email, '@example.com', '@newdomain.com');
这将更新 employees
表中的 email
列,将所有出现的 @example.com
替换为 @newdomain.com
。