declare @p1 int set @p1=13 exec spStoredProcedure @OutParam=@p1 output select @p1
为什么它在执行存储过程之前看起来像是获取输出参数的值?