SQL Server把某個字段的數據用一條語句轉換成字符串。本站提示廣大學習愛好者:(SQL Server把某個字段的數據用一條語句轉換成字符串)文章只能為提供參考,不一定能成為您想要的結果。以下是SQL Server把某個字段的數據用一條語句轉換成字符串正文
例如數據 列Name
name
a
b
c
d
最初的成果
a*b*c*d*
declare @test table( namevarchar(10))
insert into @testvalues('a'),('b'),('c'),('d');
select distinct
(select cast(name asvarchar(2))+'*'from @test for xml path(''))as name from @test
輸入成果:
(4 row(s) affected)
name
--------------------------------------------------
a*b*c*d*
(1 row(s) affected)