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)

原文链接:https://www.f2er.com/mssql/63080.html

猜你在找的MsSQL相关文章