主頁(yè) > 知識(shí)庫(kù) > 字符串聚合函數(shù)(去除重復(fù)值)

字符串聚合函數(shù)(去除重復(fù)值)

熱門(mén)標(biāo)簽:北京智能外呼系統(tǒng)供應(yīng)商家 智能電銷(xiāo)機(jī)器人教育 奧維地圖標(biāo)注字體大小修改 孝感銷(xiāo)售電銷(xiāo)機(jī)器人廠家 江西穩(wěn)定外呼系統(tǒng)供應(yīng)商 中國(guó)地圖標(biāo)注省份用什么符號(hào) 高德地圖標(biāo)注電話怎么沒(méi)了 無(wú)錫梁溪公司怎樣申請(qǐng)400電話 電話機(jī)器人錄音師薪資
--功能:提供字符串的替代聚合函數(shù)
--說(shuō)明:例如,將下列數(shù)據(jù)
--test_id test_value
--------------------
'a' '01,03,04'
'a' '02,04'
'b' '03,04,08'
'b' '06,08,09'
'c' '09'
'c' '10'
--轉(zhuǎn)換成test_vlaue列聚合后的函數(shù),且聚合后的字符串中的值不重復(fù)

--test_id test_value
--------------------
'a' '01,03,04,02'
'b' '03,04,08,06,09'
'c' '09,10'

--代碼-------------------------------------------GO
GO
if object_id(N'dbo.merge',N'FN') is not null
drop function dbo.merge
GO
--函數(shù)功能:字符串聚合及去除重復(fù)值
create function dbo.merge
(
@test_id varchar(50)
)
returns varchar(50)
as
begin
--字符串聚合-------------------------START
declare @s varchar(8000)
set @s = ''

select
@s = @s + test_value + ','
from test_a
where test_id = @test_id
--字符串聚合-------------------------END

--去除重復(fù)值-------------------------START
declare @value varchar(8000)--存儲(chǔ)第一個(gè)逗號(hào)前的值
declare @result varchar(8000)--存儲(chǔ)唯一值的中間字符串
set @result = ''

--有值的場(chǎng)合
while charindex(',',@s) > 0
begin
--取第一個(gè)逗號(hào)前的值
set @value = left(@s,charindex(',',@s) -1)

--第一個(gè)逗號(hào)前的值沒(méi)在結(jié)果中出現(xiàn)
if charindex(',' + @value + ',',',' + @result) = 0
begin
--加入中間字符串
set @result = @result + @value + ','
end

--去除第一個(gè)值以及后面的逗號(hào)(剔除法),繼續(xù)循環(huán)判斷
set @s = right(@s,(len(@s) - charindex(',',@s)))
end

set @s = @result
--去除重復(fù)值-------------------------END

return left(@s,len(@s)-1)
end
GO

if object_id(N'test_a',N'U') is not null
drop table test_a
GO

create table test_a
(
test_id varchar(50),
test_value varchar(50)
)

insert into test_a
select 'a','01,03,04' union all
select 'a','02,04' union all
select 'b','03,04,08' union all
select 'b','06,08,09' union all
select 'c','09' union all
select 'c','10'

select
test_id,
test_value = dbo.merge(test_id)
from test_a
group by test_id

標(biāo)簽:泰州 荊州 通化 齊齊哈爾 阜陽(yáng) 那曲 海北 臨滄

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《字符串聚合函數(shù)(去除重復(fù)值)》,本文關(guān)鍵詞  字符串,聚合,函數(shù),去除,;如發(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)文章
  • 下面列出與本文章《字符串聚合函數(shù)(去除重復(fù)值)》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于字符串聚合函數(shù)(去除重復(fù)值)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章