MySQL Create Function

The MySQL Create Function Tool allows users to create stored Functions for a database. The following example is output for MySQL.

create function sample.test_function (IN param1 CHAR(25), IN param2 DATE, IN param3 INT) RETURNS CHAR --insert function body here

MySQL Create Function