MySQL Stored Function
MySQL Stored Function
A stored function is a special kind stored program that returns a single value.
Typically, you use stored functions to encapsulate common formulas or
business rules that are reusable among SQL statements or stored programs.
Different from a stored procedure, you can use a stored function in SQL
statements wherever an expression is used. This helps improve the readability
and maintainability of the procedural code.
DELIMITER $$
DELIMITER ;
In this syntax:
First, specify the name of the stored function that you want to create
after CREATE FUNCTION keywords.
Second, list all parameters of the stored function inside the parentheses
followed by the function name. By default, all parameters are
the IN parameters. You cannot specify IN , OUT or INOUT modifiers to parameters
Third, specify the data type of the return value in the RETURNS statement, which
can be any valid MySQL data types.
Fourth, specify if a function is deterministic or not using
the DETERMINISTIC keyword.
A deterministic function always returns the same result for the same input
parameters whereas a non-deterministic function returns different results for
the same input parameters.
If you don’t use DETERMINISTIC or NOT DETERMINISTIC, MySQL uses the NOT
DETERMINISTIC option by default.
Fifth, write the code in the body of the stored function in the BEGIN END block.
Inside the body section, you need to specify at least
one RETURN statement. The RETURN statement returns a value to the calling
programs. Whenever the RETURN statement is reached, the execution of the
stored function is terminated immediately.
Once the function is created, you can view it in MySQL Workbench under
the Functions section:
Or you can view all stored functions in the current classicmodels database by
using the SHOW FUNCTION STATUS as follows:
SHOW FUNCTION STATUS
WHERE db = 'classicmodels';
Code language: SQL (Structured Query Language) (sql)
Calling a stored function in an SQL statement
DELIMITER ;
SELECT @customerLevel;
It’s important to notice that if a stored function contains SQL statements that
query data from tables, then you should not use it in other SQL statements;
otherwise, the stored function will slow down the speed of the query.
Step 4
Use the source command to load data into the MySQL Server:
mysql> source c:\temp\mysqlsampledatabase.sql