执行存储过程

测试时最好带参数执行存储过程

declare @p5 int

set @p5=12
exec proc_GetPenddingImportJobApply @period=1,@index=1,@pageSize=1000,@website=N'51Job',@total=@p5 output
select @p5
go

原文地址:https://www.cnblogs.com/ylemzhang/p/1678323.html