为了账号安全,请及时绑定邮箱和手机立即绑定

MySQL用户定义函数

标签:
MySQL

In this tutorial, you will learn how to create stored functions using CREATE FUNCTION statement.

A stored function is a special kind stored program that returns a single value. You use stored functions to encapsulate common formulas or business rules that may be 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.

MySQL stored function syntax

The following illustrates the simplest syntax for creating a new stored function:

CREATE FUNCTION function_name(param1,param2,…)     RETURNS datatype    [NOT] DETERMINISTIC  statements

First, you specify the name of the stored function after  CREATE FUNCTION keywords.

Second, you list all parameters of the stored function. By default, all parameters are implicitly IN parameters. You cannot specify INOUT or INOUT modifiers to the parameters.

Third, you must specify the data type of the return value in the RETURNS statement. It can be any valid MySQL data types.

Fourth, for the same input parameters, if the stored function returns the same result, it is considered deterministic and not deterministic otherwise.

You have to decide whether a stored function is deterministic or not. If you declare it incorrectly, the stored function may produced an unexpected result, or the available optimization is not used which degrade the performance.

Fifth, you write the code in the statements section. It can be a single statement or a compound statement. Inside the statements section, you have to specify at least one RETURN statement.

The RETURN statement returns a value to the caller. Whenever the RETURN statement is reached, the stored function’s execution is terminated immediately.

MySQL stored function example

The following example is a function that returns level of customer based on credit limit.

DELIMITER $$ CREATE FUNCTION CustomerLevel(p_creditLimit double) RETURNS VARCHAR(10)     DETERMINISTIC BEGIN     DECLARE lvl varchar(10);     IF p_creditLimit > 50000 THEN SET lvl = 'PLATINUM';     ELSEIF (p_creditLimit <= 50000 AND p_creditLimit >= 10000) THEN         SET lvl = 'GOLD';     ELSEIF p_creditLimit < 10000 THEN         SET lvl = 'SILVER'; END IF; RETURN (lvl); END

Now we can call the CustomerLevel() in an SQL SELECT statement as follows:

SELECT customerName, CustomerLevel(creditLimit) FROM customers;

We also rewrite the  GetCustomerLevel() stored procedure that we developed in the MySQL IF statement tutorial as follows:

DELIMITER $$ CREATE PROCEDURE GetCustomerLevel(     IN  p_customerNumber INT(11),     OUT p_customerLevel  varchar(10) ) BEGIN     DECLARE creditlim DOUBLE;     SELECT creditlimit INTO creditlim     FROM customers     WHERE customerNumber = p_customerNumber;     SELECT CUSTOMERLEVEL(creditlim)      INTO p_customerLevel; END

As you can see, the  GetCustomerLevel() stored procedure is much more readable when using the  CustomerLevel() stored function.

Notice that a stored function returns a single value only. If you include a SELECT statement without INTO clause, you will get an error.

In addition, if a stored function contains SQL statements, you should not use it inside other SQL statements; otherwise the stored function will cause the performance of the SQL statements to degrade.

原文链接:http://outofmemory.cn/mysql/procedure/mysql-stored-function

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消