Home > Database > Mysql Tutorial > body text

How to assign variables to mysql stored procedures

WBOY
Release: 2022-01-12 10:41:14
Original
3917 people have browsed it

Method: 1. Use the set statement variable assignment, the syntax is "set variable name = value or assignment statement"; 2. Use the query statement and into keyword variable assignment, the syntax is "SELECT c1, c2.. .INTO @v1, @v2...FROM table name WHERE condition".

How to assign variables to mysql stored procedures

The operating environment of this tutorial: windows10 system, mysql8.0.22 version, Dell G3 computer.

How to assign variables to mysql stored procedures

MySQL variable assignment is a pitfall. There are two ways to fill this hole.

The first one is well known: set variable name = value/assignment statement

The second one is: select ... into variable name ...; or select ... into variable name;

The first type, I saw many people on the Internet saying that @ must be added in front of the variable name, but in fact it is unnecessary. Only in some special cases, @ must be added. Most of the time, it will not affect the stored process if it is not added. in use.

For example:

set g_grant_ex='gamedb.tb_exchange_';
set @g_grant_ex='gamedb.tb_exchange_';
/*这其实是一样的效果*/
Copy after login

The second type is even more confusing. I've seen others use Yunliwuli before. I discovered it after trying it several times. . . . . . . It’s quite easy to use~ Examples are as follows

For example:

1.select count(*) into g_err from information_schema.TABLES t where t.TABLE_SCHEMA='gamedb' and t.TABLE_NAME=concat('tb_recharge_',g_year);
2.select count(*) from information_schema.TABLES t where t.TABLE_SCHEMA='gamedb' and t.TABLE_NAME=concat('tb_recharge_',g_year) into g_err;
/*这两个效果也是一样的*/
Copy after login

Recommended learning:mysql video tutorial

The above is the detailed content of How to assign variables to mysql stored procedures. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!