如何在sql server存储过程变量中获取多个值

时间:2011-10-17 05:30:18

标签: sql sql-server

declare @Pipno varchar(500)
select @Pipno = (V_3) from REPORTDATE // here V-3 contain more than five rows
select @Pipno

但是在select @Pipno中只打印一行(即最大V_3) 我想在这个@Pipno变量中存储所有五行或更多行,请回复我

1 个答案:

答案 0 :(得分:5)

您可以使用表变量。

declare @Pipno table(V_3 varchar(500))

insert into @Pipno
select V_3 
from REPORTDATE

select V_3
from @Pipno

或者如果你想把结果作为一个字符串。

declare @Pipno varchar(500)
set @Pipno = ''

select @Pipno = @Pipno + V_3 + ' '
from REPORTDATE

select @Pipno