标签:style blog color ar 数据 sp div c on
declare @myStr nvarchar(50) set @myStr = ‘this is my world‘ print @myStr print REPLACE(@myStr,‘world‘,‘word‘)
ps:REPLACE用法
语法
REPLACE ( "string_replace1" , "string_replace2" , "string_replace3" )
参数
"string_replace1"
待搜索的字符串表达式。string_replace1 可以是字符数据或二进制数据。
"string_replace2"
待查找的字符串表达式。string_replace2 可以是字符数据或二进制数据。
"string_replace3"
替换用的字符串表达式。string_replace3 可以是字符数据或二进制数据。
返回类型
如果 string_replace(1、2 或 3)是支持的字符数据类型之一,则返回字符数据。如果 string_replace(1、2 或 3)是支持的 binary 数据类型之一,则返回二进制数据。
标签:style blog color ar 数据 sp div c on
原文地址:http://www.cnblogs.com/zwhFighting/p/4006889.html