Changelockmysql 32
Changelockmysql 32
Local variables are treated like stored routine parameters with respect
to data type and overflow checking. See [HELP CREATE PROCEDURE].
Local variable names are not case sensitive. Permissible characters and
quoting rules are the same as for other identifiers, as described in
https://mariadb.com/kb/en/identifier-names/.
The scope of a local variable is the BEGIN ... END block within which
it is declared. The variable can be referred to in blocks nested within
the declaring block, except those blocks that declare a variable with
the same name.
URL: https://mariadb.com/kb/en/declare-variable/