Function in MYSQL by R4R Team

We can also Create a function in MYSQL which take parameter and return some values.

Syntax:
CREATE FUNCTION function_name [ (parameter datatype [, parameter datatype]) ]
RETURNS return_datatype
BEGIN
Declaration_section
Executable_section
END;




Leave a Comment: