MySQL create and invoke functions and procedures

Source: Internet
Author: User
Tags mysql create

Create a function

Delimiter//Create functionFunction_name ([Parameters])returnsReturn_typebeginDo your WorkEnd//delimiter; Description:1.//can be replaced with $$2the last sentence has a space between the delimiter and the semicolon.3Each parameter must have a parameter name and type, i.e. function_name (nametext)

Calling functions

Function_name ([parameters])

Example:

Create a process

// Create procedure procedure_name ([inparameters[,out parameters]])    Beginworkend//delimiter; it's basically the same way you create a function

Call procedure

Call Procedure_name (In_parameter,@out_parameter);

Example:

References:

Function

Process

MySQL create and invoke functions and procedures

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.