欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL Server把某个字段的数据用一条语句转换成字符串

程序员文章站 2022-10-10 15:33:11
例如数据 列name 复制代码 代码如下: name a b c d 最后的结果 复制代码 代码如下: a*b*c*d* declare @tes...

例如数据 列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)