主頁(yè) > 知識(shí)庫(kù) > SQL里面用自定義Split()完成個(gè)性化需求

SQL里面用自定義Split()完成個(gè)性化需求

熱門標(biāo)簽:怎么給高德做地圖標(biāo)注 咸陽(yáng)電腦外呼系統(tǒng)運(yùn)營(yíng)商 慶陽(yáng)地圖標(biāo)注 榕城市地圖標(biāo)注 浙江穩(wěn)定外呼系統(tǒng)供應(yīng)商 承德地圖標(biāo)注公司名需要花錢嗎 電銷外呼系統(tǒng)軟件功能 美團(tuán)地圖標(biāo)注商戶認(rèn)證注冊(cè) 北京400電話辦理多少錢
復(fù)制代碼 代碼如下:

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE function [dbo].[SplitString]
(
@Input nvarchar(max),
@Separator nvarchar(max)=',',
@RemoveEmptyEntries bit=1
)
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

函數(shù)、表都建好了,下面調(diào)用測(cè)試一下吧:
復(fù)制代碼 代碼如下:

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)

結(jié)果,截個(gè)圖來(lái)看一下:

標(biāo)簽:新鄉(xiāng) 江蘇 重慶 呼和浩特 昭通 貴州 拉薩 上海

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《SQL里面用自定義Split()完成個(gè)性化需求》,本文關(guān)鍵詞  SQL,里面,用,自定義,Split,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《SQL里面用自定義Split()完成個(gè)性化需求》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于SQL里面用自定義Split()完成個(gè)性化需求的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章