Syntax for Parameters of Procedures : Parameters « Procedure Function « SQL / MySQL
- SQL / MySQL
- Procedure Function
- Parameters
Syntax for Parameters of Procedures
CREATE PROCEDURE name ([parameterlist])
[options] sqlcode
If there is more than one parameter, they must be separated by commas.
Each parameter is specified as follows:
[IN or OUT or INOUT] parametername datatype
Related examples in the same category