SQLServer中 多行合成一行 的方法.
多行合并成一行.
declare @tab table (id int )
declare @i int
declare @str varchar(300)
select @i = 0 ,@str = '['
while @i < 20 begin
insert into @tab
select @i
select @i = @i + 1
end
select @str = @str + cast(id as varchar) + ',' from @tab
select @str =substring(@str,1,len(@str) -1 ) + ']'
select @str
declare @i int
declare @str varchar(300)
select @i = 0 ,@str = '['
while @i < 20 begin
insert into @tab
select @i
select @i = @i + 1
end
select @str = @str + cast(id as varchar) + ',' from @tab
select @str =substring(@str,1,len(@str) -1 ) + ']'
select @str
参见:
一行折分成多行: http://www.cnblogs.com/newsea/archive/2006/10/19/533285.html
作者:NewSea 出处:http://newsea.cnblogs.com/
QQ,MSN:iamnewsea@hotmail.com 如无特别标记说明,均为NewSea原创,版权私有,翻载必纠。欢迎交流,转载,但要在页面明显位置给出原文连接。谢谢。 |