[MSSQL]實現SQL Server中的切割字串SplitString標量函式
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
/*
by kudychen 2011-9-28
*/
CREATE function [dbo].[SplitString]
(
@Input nvarchar(max), --input string to be separated
@Separator nvarchar(max)=',', --a string that delimit the substrings in the input string
@RemoveEmptyEntries bit=1 --the return value does not include array elements that contain an empty string
)
returns @TABLE table
(
[Id] int identity(1,1),
[Value] nvarchar(max)
)
as
begin
declare @Index int, @Entry nvarchar(max)
set @Index = charindex(@Separator,@Input)
while (@Index>0)
begin
set @Entry=ltrim(rtrim(substring(@Input, 1, @Index-1)))
if (@RemoveEmptyEntries=0) or (@RemoveEmptyEntries=1 and @Entry<>'')
begin
insert into @TABLE([Value]) Values(@Entry)
end
set @Input = substring(@Input, @Index+datalength(@Separator)/2, len(@Input))
set @Index = charindex(@Separator, @Input)
end
set @Entry=ltrim(rtrim(@Input))
if (@RemoveEmptyEntries=0) or (@RemoveEmptyEntries=1 and @Entry<>'')
begin
insert into @TABLE([Value]) Values(@Entry)
end
return
end
如何使用:
declare @str1 varchar(max), @str2 varchar(max), @str3 varchar(max)
set @str1 = '1,2,3'
set @str2 = '1###2###3'
set @str3 = '1###2###3###'
select [Value] from [dbo].[SplitString](@str1, ',', 1)
select [Value] from [dbo].[SplitString](@str2, '###', 1)
select [Value] from [dbo].[SplitString](@str3, '###', 0)
相關文章
- SQL SERVER 字串函式SQLServer字串函式
- Sql Server系列:字串函式SQLServer字串函式
- Sql Server函式全解(1):字串函式SQLServer函式字串
- Sql Server函式全解(一)字串函式SQLServer函式字串
- SQL Server字串處理函式大全SQLServer字串函式
- SQL Server最佳化標量函式改寫內聯表值函式SQLServer函式
- SQL server 表值函式 標量值函式 區別SQLServer函式
- SQL-Server中datepart函式的使用SQLServer函式
- 利用SQL的charindex實現字串陣列和Split函式SQLIndex字串陣列函式
- Sql字串分組Split函式的兩種實現方法SQL字串函式
- [MSSQL]SQL數字轉英文函式SQL函式
- python3程式碼中函式切割列表怎麼實現?Python函式
- 字串相關函式的實現字串函式
- 一個SQL Server中的FormatDatetime函式SQLServerORM函式
- SQL中的常用的字串處理函式大全SQL字串函式
- [MSSQL]字串轉成16進位制函式SQL字串函式
- Sql字串操作函式SQL字串函式
- mysql函式substring_index實現split切割效果MySql函式Index
- SQL Server對比兩字串的相似度(函式演算法)SQLServer字串函式演算法
- MSSQL-SQL SERVER一些使用中的技巧SQLServer
- Sql Server 日期函式SQLServer函式
- T-SQL——函式——字串操作函式SQL函式字串
- PHP內建字串函式實現PHP字串函式
- SQL Server中如何拆分字串SQLServer字串
- PHP中的字串函式PHP字串函式
- SQL Server中row_number函式的常見用法SQLServer函式
- SQL Server常用函式整理SQLServer函式
- Sql Server系列:聚合函式SQLServer函式
- Sql Server系列:排序函式SQLServer排序函式
- Sql server 分割符函式SQLServer函式
- SQL SERVER 數學函式SQLServer函式
- SQL SERVER 系統函式SQLServer函式
- SQL SERVER 自定義函式SQLServer函式
- SQL Server函式總結SQLServer函式
- SQL Server CONVERT() 函式SQLServer函式
- 瞭解ES6中的模板字串的標籤函式字串函式
- c++字串查詢函式實現C++字串函式
- SQL字串處理函式大全SQL字串函式