SqlServer中Substring函数的用法

Posted 5173pwd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SqlServer中Substring函数的用法相关的知识,希望对你有一定的参考价值。

1、substring(操作的字符串,开始截取的位置,返回的字符个数)

例如:

从‘abbccc‘中返回‘ccc‘,charindex函数用法(charindex(查找的字符串,被查找的字符串,开始查找的位置),例如查找‘abbccc‘中第一个‘c‘出现的位置,charindex(‘c‘,‘abbccc‘,1))

1 declare @str1  varchar(255)
2 declare @str2 varchar(255)
3 set @str1 = abbccc
4 set @str2 = substring(@str1,charindex(c,@str1),len(@str1)-charindex(c,@str1)+1)
5 print @str2

技术分享图片

 

以上是关于SqlServer中Substring函数的用法的主要内容,如果未能解决你的问题,请参考以下文章

SQL中SUBSTRING的用法

substring()的用法和注意事项

substring的用法

substring的用法 怎么截取字符串

subString的用法

sqlServer PIVOT函数求解