Get RETURN value from stored procedure in SQL

后端 未结 3 892
渐次进展
渐次进展 2021-02-02 04:59

I have a stored procedure where it ends with a RETURN value of 0 or 1.

I want to use this value in an IF statement in another stored procedure.

How can I get the

3条回答
  •  野性不改
    2021-02-02 05:35

    This should work for you. Infact the one which you are thinking will also work:-

     .......
     DECLARE @returnvalue INT
    
     EXEC @returnvalue = SP_One
     .....
    

提交回复
热议问题