例如數據 列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)