1. 程式人生 > >SqlServer中Substring函數的用法

SqlServer中Substring函數的用法

dex declare bst 分享 info 截取 nbsp sql .com

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函數的用法