其他分享
首页 > 其他分享> > REPLACE函数的使用

REPLACE函数的使用

作者:互联网

语法 REPLACE ( ''string_replace1'' , ''string_replace2'' , ''string_replace3'' ) 参数 ''string_replace1'' 待搜索的字符串表达式。string_replace1 可以是字符数据或二进制数据。 ''string_replace2'' 待查找的字符串表达式。string_replace2 可以是字符数据或二进制数据。 ''string_replace3''   示例 下例用 xxx 替换 abcdefghi 中的字符串 cde。 SELECT REPLACE(''abcdefghicde'',''cde'',''xxx'')GO 下面是结果集: ---abxxxfghixxx(1 row(s) affected)

标签:replace1,replace2,函数,cde,REPLACE,使用,字符串,string
来源: https://www.cnblogs.com/gzb1/p/15459334.html