程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 在SQL Server數據庫中拆分字符串函數

在SQL Server數據庫中拆分字符串函數

編輯:關於SqlServer

SQL Server數據庫中拆分字符串函數的具體方法:

CREATE  FUNCTION uf_StrSplit '1.1.2.50','.'
(@origStr varchar(7000),  --待拆分的字符串
@markStr varchar(100))  --拆分 標記,如','
RETURNS @splittable table
(
str_id   varchar(4000) NOT NULL, --編號ID
string  varchar(2000) NOT NULL --拆分後的字符串
)
AS
BEGIN
declare @strlen int,@postion int,@start int,@sublen int,
@TEMPstr varchar (200),@TEMPid int
SELECT @strlen=LEN (@origStr),@start=1,@sublen=0,@postion=1,
@TEMPstr='',@TEMPid=0
if(RIGHT(@origStr,1)<>@markStr )
begin
set @origStr = @origStr + @markStr
end
WHILE((@postion<=@strlen) and (@postion !=0))
BEGIN
IF(CHARINDEX (@markStr,@origStr,@postion)!=0)
BEGIN
SET @sublen=CHARINDEX (@markStr,@origStr,@postion)-@postion;
END
ELSE
BEGIN
SET @sublen=@strlen-@postion+1;
END
IF (@postion<=@strlen)
BEGIN
SET @TEMPid=@TEMPid+1;
SET @TEMPstr=SUBSTRING(@origStr,@postion,@sublen);
INSERT INTO @splittable(str_id,string)
values(@TEMPid,@TEMPstr)
IF (CHARINDEX(@markStr,@origStr,@postion)!=0)
BEGIN
SET @postion=CHARINDEX(@markStr,@origStr,@postion)+1
END
ELSE
BEGIN
SET @postion=@postion+1
END
END
END
RETURN
END

例如:select * from uf_StrSplit('1,1,2,50',',')

輸出結果:

str_id   string
1       1
2       1
3       2
4      50

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved