美文网首页
mysql:stored procedure

mysql:stored procedure

作者: BenjaminCool | 来源:发表于2018-12-07 15:17 被阅读2次

    参考

    http://www.mysqltutorial.org/mysql-stored-procedure-tutorial.aspx

    stored procedure

    stored procedure :
    存储在mysql中, 用来定义 功能的, clients 可以调用,
    类似于 java中定义的方法,用来完成特定的功能,

    clients 主动调用,主动调用 stored procedure

    有一套自己的定义 函数语法, 可以写各种功能的“函数”, 是mysql领域内编程。

    stored procedure : 可以理解成 存储的过程, 或 存储的程序

    创建:

    create procedure

    stored functions

    创建:
    create function

    用法:
    call a stored procedure

    CALL stored_procedure_name();

    用来定义函数的, 封装特定的功能的, 定义特定功能的函数,
    用法:
    we can call the CustomerLevel() in a [SELECT](http://www.mysqltutorial.org/mysql-select-statement-query-data.aspx) statement

    相关文章

      网友评论

          本文标题:mysql:stored procedure

          本文链接:https://www.haomeiwen.com/subject/iumthqtx.html