When working with stored procedures, you can define _________ parameters to pass values to the procedure.

  • Input
  • Output
  • Input and Output
  • Optional
In SQL Server, stored procedures can have parameters that can be defined as either input parameters, output parameters, or both. Input parameters are used to pass values into the procedure, while output parameters are used to return values back to the caller. Optional parameters are not directly supported in stored procedures but can be simulated using default parameter values.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *