Introduction to the basic usage of MySQL stored procedures bitsCN.com organizes a lot of SQL statements when an external program accesses a database (such as PHP.
Especially when the business logic is complex, a lot of SQL statements and conditions are mixed in PHP code, which is chilling. With the MySQL stored procedure, the business logic can encapsulate the stored procedure, which is not only easy to maintain, but also highly efficient in execution.
I. MySQL stored procedure
"Pr_add" is a simple MySQL stored procedure. this MySQL stored procedure has two int-type input parameters: "a" and "B". the sum of the two parameters is returned.
Drop procedure if exists pr_add;
Calculate the sum of two numbers
Create procedure pr_add
(
A int,
B int
)
Begin
Declare c int;
If a is null then
Set a = 0;
End if;
If B is null then
Set B = 0;
End if;
Set c = a + B;
Select c as sum;
/*
Return c;
It cannot be used in MySQL stored procedures. Return can only appear in functions.
*/
End;
II. call the MySQL stored procedure
Call pr_add (10, 20 );
Execute the MySQL stored procedure. the stored procedure parameter is a MySQL User variable.
Set @ a = 10;
Set @ B = 20;
Call pr_add (@ a, @ B );
III. MySQL stored procedure features
The simple syntax for creating a MySQL stored procedure is:
Create procedure stored procedure name ()
(
[In | out | inout] parameter datatype
)
Begin
MySQL statement;
End;
If you do not explicitly specify "in", "out", and "inout" for MySQL Stored Procedure parameters, the default value is "in ". Traditionally, we will not explicitly specify the "in" parameter.
1. the "()" after the MySQL stored procedure name is required. even if there is no parameter, "()" is required "()"
2. MySQL Stored Procedure parameters. you cannot add "@" before the parameter name, for example, "@ a int ". The following syntax for creating a stored procedure is incorrect in MySQL (correct in SQL Server ). You do not need to add "@" before the variable name in the MySQL stored procedure, although you need to add "@" to the MySQL client user variable "@".
Create procedure pr_add
(
@ A int, -- error
B int -- correct
)
3. the default value cannot be specified for MySQL Stored Procedure parameters.
4. MySQL stored procedures do not need to add "as" before procedure body ". The SQL Server stored procedure must contain the "as" keyword.
Create procedure pr_add
(
A int,
B int
)
As -- error, MySQL does not need ""
Begin
Mysql statement ...;
End;
5. if the MySQL stored procedure contains multiple MySQL statements, the begin end keyword is required.
Create procedure pr_add
(
A int,
B int
)
Begin
Mysql statement 1 ...;
Mysql statement 2 ...;
End;
6. add a semicolon (;) to the end of each statement in the MySQL stored procedure ";"
...
Declare c int;
If a is null then
Set a = 0;
End if;
...
End;
7. notes in the MySQL stored procedure.
/*
This is
Comment on multiple MySQL lines.
*/
Declare c int; -- this is a single-line MySQL comment (note that there must be at least one space after)
If a is null then # This is also a single-row MySQL comment
Set a = 0;
End if;
...
End;
8. the "return" keyword cannot be used in MySQL stored procedures.
Set c = a + B;
Select c as sum;
/*
Return c; -- cannot be used in MySQL stored procedures. Return can only appear in functions.
*/
End;
9. when calling the MySQL stored procedure, you need to add "()" after the procedure name. even if there is no parameter, you also need "()"
Call pr_no_param ();
10. because there is no default value for the MySQL Stored Procedure parameters, you cannot omit the parameters when calling the MySQL stored procedure. It can be replaced by null. BitsCN.com
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.