Hi,
What is output type stored procedure? Why we used it?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Prabhu RajaPosted Oct 10, 2011, 2:01 PM
It makes stored procedure to return several values and each must be defined as an output variable in the stored procedure and in the calling statements.
Example :
@ReturnVariable INT OUTPUT
Return
DECLARE @myvariable int
Suthish NairPosted Oct 10, 2011, 1:43 PM