1.cursor CursorsUsed to declare a data setThe declaration of the cursor must be after the variable and the condition declaration, before the handler declarationCursor Properties:
Insensitive: The server can or does not replicate its results
When mysql is imported into the stored procedure, the declare error is solved. When importing the stored procedure, the following DECLARE errors are often encountered :? ErrorCode: 1064 YouhaveanerrorinyourSQLsyntax;
Document directory
Lifecycle 2.8. DECLARE statement
Both SQL server and mysql are our frequently used database systems. Next we will introduce the differences between the values of SQL server and mysql variables, and hope to enlighten
in MySQL, we can save a value or a query result in a user-defined variable, and then in the following statement in the application. set defines variables;SET @var_name: = expr [, @var_name = expr] ....SET @var_name = expr [, @var_name = expr]
Variables defined by declare and @set are often seen in stored procedures. In simple terms, the declare definition is similar to a local variable, @set a similar global variable defined.
1. Declare-defined variables are similar to local variables
In MySQL5, the new statement declare is used. in the composite statement, the variable declaration command is DECLARE.
(1) Example with two DECLARE statements
Two DECLARE statements
Create procedure p8 ()
BEGIN
DECLARE a INT;
DECLARE B INT;
SET a =
Variables defined by declare and variables defined by @set are often seen in stored procedures. In simple terms, the declare definition is similar to a local variable, @set defined similar to a global variable.1. The variable defined by declare is
There are two ways to define variables in a MySQL stored procedure:1. Use set or select to assign a value directly, and the variable name begins with @.For example: Set @var = 1;You can declare anywhere in a session that the scope is the entire
MySQL stored procedure SP explanation
1. Introduction to stored procedures
The commonly used Operating Database Language SQL statements must be compiled and then executed before execution. the Stored Procedure (Stored Procedure) is a set of SQL
1. Introduction to stored procedures
The commonly used operating database language SQL statements must be compiled and then executed before execution. The Stored Procedure (Stored Procedure) is a set of SQL statements for specific functions, after
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.