当前位置: 代码迷 >> Sql Server >> 请教存储过程中可以调用自身存储过程吗
  详细解决方案

请教存储过程中可以调用自身存储过程吗

热度:104   发布时间:2016-04-27 21:41:39.0
请问存储过程中可以调用自身存储过程吗?
RT

------解决方案--------------------
求:5

drop proc p10
create proc p10 (@in int, @out int output) as
declare @o1 int
declare @i1 int
if @in <= 1
set @out = 1
else
begin
set @i1 = @in - 1
exec sp_executesql N 'exec p10 @i1, @o1 output ',
N '@i1 int, @o1 int output ',
@i1, @o1 output

set @out = @in * @o1
end
return

declare @o1 int
exec p10 5, @o1 output
select @o1
  相关解决方案