程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL裡完成相似SPLIT的朋分字符串的函數

MySQL裡完成相似SPLIT的朋分字符串的函數

編輯:MySQL綜合教程

MySQL裡完成相似SPLIT的朋分字符串的函數。本站提示廣大學習愛好者:(MySQL裡完成相似SPLIT的朋分字符串的函數)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL裡完成相似SPLIT的朋分字符串的函數正文


下邊的函數,完成了象數組一樣行止理字符串。

一,用暫時表作為數組


create function f_split(@c varchar(2000),@split varchar(2))
returns @t table(col varchar(20))
as
begin
while(charindex(@split,@c)<>0)
begin
insert @t(col) values (substring(@c,1,charindex(@split,@c)-1))
set @c = stuff(@c,1,charindex(@split,@c),'')
end
insert @t(col) values (@c)
return
end
go
select * from dbo.f_split('dfkd,dfdkdf,dfdkf,dffjk',',')
drop function f_split
col
--------------------
dfkd
dfdkdf
dfdkf
dffjk
(所影響的行數為 4 行)


2、按指定符號朋分字符串,前往朋分後的元素個數,辦法很簡略,就是看字符串中存在若干個分隔符號,然後再加一,就是請求的成果。


CREATE function Get_StrArrayLength
(
@str varchar(1024), --要朋分的字符串
@split varchar(10) --分隔符號
)
returns int
as
begin
declare @location int
declare @start int
declare @length int
set @str=ltrim(rtrim(@str))
set @location=charindex(@split,@str)
set @length=1
while @location<>0
begin
set @start=@location+1
set @location=charindex(@split,@str,@start)
set @length=@length+1
end
return @length
end

挪用示例:select dbo.Get_StrArrayLength('78,1,2,3',',')
前往值:4

3、按指定符號朋分字符串,前往朋分後指定索引的第幾個元素,象數組一樣便利


CREATE function Get_StrArrayStrOfIndex
(
@str varchar(1024), --要朋分的字符串
@split varchar(10), --分隔符號
@index int --取第幾個元素
)
returns varchar(1024)
as
begin
declare @location int
declare @start int
declare @next int
declare @seed int
set @str=ltrim(rtrim(@str))
set @start=1
set @next=1
set @seed=len(@split)
set @location=charindex(@split,@str)
while @location<>0 and @index>@next
begin
set @start=@location+@seed
set @location=charindex(@split,@str,@start)
set @next=@next+1
end
if @location =0 select @location =len(@str)+1
--這兒存在兩種情形:1、字符串不存在分隔符號 2、字符串中存在分隔符號,跳出while輪回後,@location為0,那默許為字符串後邊有一個分隔符號。
return substring(@str,@start,@location-@start)
end

挪用示例:select dbo.Get_StrArrayStrOfIndex('8,9,4',',',2)
前往值:9

4、聯合上邊兩個函數,象數組一樣遍歷字符串中的元素


declare @str varchar(50)
set @str='1,2,3,4,5'
declare @next int
set @next=1
while @next<=dbo.Get_StrArrayLength(@str,',')
begin
print dbo.Get_StrArrayStrOfIndex(@str,',',@next)
set @next=@next+1
end

挪用成果:
1
2
3
4
5
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved