A2-06-03.MySQL Stored Procedure Variables

时间:2022-06-01 19:48:10

转载自:http://www.mysqltutorial.org/variables-in-stored-procedures.aspx

MySQL Stored Procedure Variables

 

Summary: in this tutorial, you will learn about variables in the stored procedure, how to declare, and use variables. In addition, you will learn about the scopes of variables.

A variable is a named data object whose value can change during the stored procedure execution. We typically use the variables in stored procedures to hold the immediate results. These variables are local to the stored procedure. You must declare a variable before using it.

Declaring variables

To declare a variable inside a stored procedure, you use the DECLARE  statement as follows:

Let’s examine the statement above in more detail:

  • First, you specify the variable name after the DECLARE keyword. The variable name must follow the naming rules of MySQL table column names.
  • Second, you specify the data type of the variable and its size. A variable can have any MySQL data types such as INTVARCHAR , and DATETIME.
  • Third, when you declare a variable, its initial value is NULL. You can assign the variable a default value using the DEFAULTkeyword.

For example, we can declare a variable named total_sale with the data type INT and default value 0 as follows:

MySQL allows you to declare two or more variables that share the same data type using a single DECLARE statement as follows:

In this example, we declared two integer variables  x and  y, and set their default values to zero.

Assigning variables

Once you declared a variable, you can start using it. To assign a variable another value, you use the SET statement, for example:

The value of the total_count variable is 10  after the assignment.

Besides the SET statement, you can use the SELECT INTO statement to assign the result of a query, which returns a scalar value, to a variable. See the following example:

In the example above:

  • First, we declared a variable named total_products  and initialized its value to 0.
  • Then, we used the SELECT INTO  statement to assign the total_products  variable the number of products that we selected from the products  table in the sample database.

Variables scope

A variable has its own scope that defines its lifetime. If you declare a variable inside a stored procedure, it will be out of scope when the END statement of stored procedure reaches.

If you declare a variable inside BEGIN END  block, it will be out of scope if the END is reached. You can declare two or more variables with the same name in different scopes because a variable is only effective in its own scope. However, declaring variables with the same name in different scopes is not good programming practice.

A variable whose name begins with the @ sign is a session variable. It is available and accessible until the session ends.

In this tutorial, we have shown you how to declare a variable inside stored procedures and discussed the variable scopes.