Question - What are the parameter types in Stored Procedures?
Answer -
There are three types of parameters available in Stored Procedures. They are:
- IN: Used to pass the input values to the procedure.
- OUT: Used to get the value from the procedure.
- IN/OUT: Used to pass the input values and get the value to/from the procedure.