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

原创文章,作者:6024010,如若转载,请注明出处:https://blog.ytso.com/234907.html

(0)
上一篇 2022年1月23日
下一篇 2022年1月23日

相关推荐

发表回复

登录后才能评论