serversql存储过程查询怎么返回结果

2024年11月15日 02:35
有1个网友回答
网友(1):

返回结果的方式有很多我说两种,一种是利用存储过程的参数可以把存储过程的结果返回,另外一绝握如种是在外部接收存储过程内皮芹部return出来的结果。当然啦,还可以在存储过程内部select要返回的结果。

比如:并启

create proc test
  @p_errormsg varchar(80) = '' out
  as
   select @p_errormsg = '测试'
   return -100
go

--------------------------------------------------------------

declare @errorcode int 
declare @errormsg varchar(80) 
exec @errorcode = test @errormsg out

select @errorcode as errorcode, @errormsg as errormsg
  --@errorcode是return出来的结果 @errormsg 是输出参数@p_errormsg的执行结果