SQL Server把某个字段的数据用一条语句转换成字符串
摘要:例如数据列Name复制代码代码如下:nameabcd最后的结果复制代码代码如下:a*b*c*d*declare@testtable(name...
例如数据 列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)
【SQL Server把某个字段的数据用一条语句转换成字符串】相关文章:
★ sql server中datetime字段去除时间的语句
★ SQL Server2008导出数据之Excel详细解析
★ SQL Server数据库管理常用的SQL和T-SQL语句