标签:style blog color io ar sp div art c
declare @myTel nvarchar(20) set @myTel = ‘021-77889900‘ print CHARINDEX(‘-‘,@myTel)
ps:CHARINDEX()用法
语法CHARINDEX ( expression1 , expression2 [ , start_location ] )
参数
"expression1"
表示搜索的目标字符
"expression2"
表示被搜索的字符串
"start_location"
表示被搜索字符中的开始位置
返回类型
函数返回一个整数,表示expression1在expression2中的位置,如果CHARINDEX()函数没有找到要找的字符,那么返回值为0。
标签:style blog color io ar sp div art c
原文地址:http://www.cnblogs.com/zwhFighting/p/4006906.html