sql---str_replace()用法

str_replace函数的语法很简单:

                     replace("string_expression1", "string_expression2", "string_expression3")

 

就是:将字符串1中所包含的所有 的字符串2都用字符串3统统替换。

一个简单的例子:

[c-sharp]  view plain  copy
  1. 1> select str_replace('This is Andkylee!My nAme is andkylee!','A','a')  
  2. 2> go  
  3.  -------------------------------------  
  4.  This is andkylee!My name is andkylee!  
  5. (1 row affected)  

 

但是, 网上有人发帖说str_replace不能替换字符串中的空格为“(也就是说删除字符串中的所有空格)。不看官方文档,想当然的就写出来这样的语句:select str_replace('123 456 ',' ','')

但是很可惜,执行失败。

[c-sharp]  view plain  copy
  1. 1> select len('123 456 '),str_replace('123 456 ',' ','') ,len(str_replace('123 456 ',' ',''))  
  2. 2> go  
  3.  ----------- -------- -----------  
  4.            8 123 456            8  
  5. (1 row affected)  

如上可以看到select str_replace('123 456 ',' ','')并没有替换其中的空格为空(亦即删除其中的所有空格),用函数str_replace执行前后的字符串是相同的。

 

通过查阅官方文档中关于str_replace的介绍,有下面的两点需要注意:

1. Adaptive Server 将空字符串常量自动转换为 1 个空格的字符串,以便将该字符串与 NULL 值区分开。

2. str_replace 在第三个参数中接受 NULL,将其视为尝试用 NULL 替换 string_expression2,有效地将 str_replace 转换成“字符串切除”
操作。

 

这两条的意思是说:在函数str_replace中""相当于" ", NULL 相当于“”(空字符)。

 

 ""相当于" "

示例:

[c-sharp]  view plain  copy
  1. 1> select str_replace("cde fghi ","","_")  
  2. 2> go  
  3.  ---------  
  4.  cde_fghi_  
  5. (1 row affected)  
  6. 1> select str_replace("cde fghi "," ","_")  
  7. 2> go  
  8.  ---------  
  9.  cde_fghi_  
  10. (1 row affected)  

两个空格还是2个空格意思:

1> select str_replace("cde fghi ","  ","_")
2> go

 ---------
 cde fghi

(1 row affected)

 

 

NULL 相当于“”(空字符)

示例如下:

[c-sharp]  view plain  copy
  1. 1> select str_replace("cde fghi "," ",null),len(str_replace("cde fghi "," ",null))  
  2. 2> go  
  3.  --------- -----------  
  4.  cdefghi             7  
  5. (1 row affected)  
  6. 1> select str_replace("cde fghi ","",null),len(str_replace("cde fghi "," ",null))  
  7. 2> go  
  8.  --------- -----------  
  9.  cdefghi             7  
  10. (1 row affected)  


总结:

在函数str_replace中NULL 相当于“”(空字符),""相当于" " 。其它都是正常的。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值