定义一个存储过程如下:
现在想用SQL语句来调用这个存储过程,并把他返回的表放入变量中.可以如下做:
create
proc
[
dbo
]
.
[
test1
]
@id int
as
select 1 as id, ' abc ' as name union all
select @id as id, ' zzz ' as name
返回两行数据.
@id int
as
select 1 as id, ' abc ' as name union all
select @id as id, ' zzz ' as name
现在想用SQL语句来调用这个存储过程,并把他返回的表放入变量中.可以如下做:
declare
@table
table
(id
int
,name
varchar
(
50
))
--
定义表变量来存放存储过程返回的内容
insert into @table exec test1 2 -- 将存储过程执行的结果放入表变量中
select *
from @table -- 查看表变量中的结果
insert into @table exec test1 2 -- 将存储过程执行的结果放入表变量中
select *
from @table -- 查看表变量中的结果
本文转自深蓝居博客园博客,原文链接:http://www.cnblogs.com/studyzy/archive/2007/07/26/831924.html,如需转载请自行联系原作者