sql函数charindex怎么用,charindex函数入门教程

发布时间:2020-05-02编辑:脚本学堂
charindex和patindex函数常常用来在一段字符中搜索字符或者字符串。
如果被搜索的字符中包含有要搜索的字符,那么这两个函数返回一个非零的整数,这个整数是要搜索的字符在

charindex和patindex函数常常用来在一段字符中搜索字符或者字符串。
如果被搜索的字符中包含有要搜索的字符,那么这两个函数返回一个非零的整数,这个整数是要搜索的字符在被搜索的字符中的开始位数。

patindex函数支持使用通配符来进行搜索,然而charindex不支持通佩符。接下来,我们逐个分析这两个函数。

如何使用charindex函数?
charindex函数返回字符或者字符串在另一个字符串中的起始位置。

charindex函数调用方法如下:
charindex ( expression1 , expression2 [ , start_location ] )
expression1是要到expression2中寻找的字符中,start_location是charindex函数开始在expression2中找expression1的位置。
charindex函数返回一个整数,返回的整数是要找的字符串在被找的字符串中的位置。假如charindex没有找到要找的字符串,那么函数整数“0”。让我们看看下面的函数命令执行的结果:
charindex(’sql’, ’microsoft sql server’)
这个函数命令将返回在“microsoft sql server”中“sql”的起始位置,在这个例子中,charindex函数将返回“s”在“microsoft sql server”中的位置11。

charindex命令
 

charindex(’7.0’, ’microsoft sql server 2000’)


在这个例子中,charindex返回零,因为字符串“7.0” 不能在“microsoft sql server”中被找到。接下来通过两个例子来看看如何使用charindex函数来解决实际的t-sql问题。

第一个例子,假设要显示northwind数据库customer表前5行联系人列的last name。这是前5行数据
contactname
------------------------------
maria anders
ana trujillo
antonio moreno
thomas hardy
christina berglund
你可以看到,customname包含客户的first name和last name,它们之间被一个空格隔开。我用charindx函数确定两个名字中间空格的位置。通过这个方法,我们可以分析contactname列的空格位置,这样我们可以只显示这个列的last name部分。这是显示northwind的customer表前5行last name的记录!
 

select top 5 substring(contactname,charindex(’ ’,contactname)+1 ,
 len(contactname)) as [last name] from northwind.dbo.customers

输出结果:
last name
------------------------------
anders
trujillo
moreno
hardy
berglund