首页 > 数据库 > SQL Server > 正文

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

2024-08-31 01:03:02
字体:
来源:转载
供稿:网友

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表