1
Reply

How many ways we can return data from Stored Procedure?

Praveen Kumar

Praveen Kumar

4y
1.4k
1
Reply

There are four ways to return data from stored procedure.

  1. SELECT statement
  2. Output parameter
  3. RETURN command
  4. RAISERROR command

    There are three ways of returning data from a procedure to a calling program: result sets, output parameters, and return codes.