Mysql Replace()

作者: 沧海2122537190 | 来源:发表于2019-07-03 10:19 被阅读0次

REPLACE ( ''string_replace1'' , ''string_replace2'' , ''string_replace3'' )

参数#

string_replace1
待搜索的字符串表达式。string_replace1 可以是字符数据或二进制数据。
string_replace2
待查找的字符串表达式。string_replace2 可以是字符数据或二进制数据。
string_replace3
替换用的字符串表达式。string_replace3 可以是字符数据或二进制数据。

eg:

set  article_path = REPLACE(article_path, 'AAAA', 'BBBB')

把Article_Source_Journal表article_path字段里的AAAA换成BBBB。

相关文章

网友评论

    本文标题:Mysql Replace()

    本文链接:https://www.haomeiwen.com/subject/fnnfhctx.html