MySQL REPLACE() 函数
定义和用法
REPLACE()函数用新的子字符串替换字符串中所有出现的子字符串。 注意:此函数执行区分大小写的替换。语法
REPLACE(string, from_string, new_string)
参数值
参数 | 描述 |
---|---|
string | 必须项。原始字符串 |
from_string | 必须项。要替换的子字符串 |
new_string | 必须项。新的替换子字符串 |
技术细节
适用于: | 从MySQL 4.0 |
---|
参数 | 描述 |
---|---|
string | 必须项。原始字符串 |
from_string | 必须项。要替换的子字符串 |
new_string | 必须项。新的替换子字符串 |
适用于: | 从MySQL 4.0 |
---|