MySQL stored procedure in, out and inout parameter examples and summary

MySQL stored procedure in, out and inout parameter examples and summary

Stored Procedures

1. Create a stored procedure and view global variables

mysql> create database yy;
Query OK, 1 row affected (0.00 sec)

mysql> use yy;
Database changed
mysql> set @num1=10,@num2=20,@num3=30; //Set global variablesmysql> delimiter $$
mysql> create procedure p(in num1 int,out num2 int,inout num3 int)
 -> begin
 -> select num1,num2,num3;
 -> set num1=100,num2=200,num3=300;
 -> select num1,num2,num3;
 -> end $$
Query OK, 0 rows affected (0.00 sec)

mysql> delimiter;
mysql> call p(@num1,@num2,@num3);

Summary 1:

  • in and inout parameters pass the value of the global variable into the stored procedure, while out parameters do not pass the value of the global variable into the stored procedure. When using a stored procedure, the parameter values ​​in, out, and inout will change.

2. Changes in global variable values ​​when calling a stored procedure

mysql> select @num1,@num2,@num3;

Summary 2:

  • After calling the stored procedure, it is found that the in parameter will not change the value of the global variable, while the out and inout parameters will change the value of the global variable after calling the stored procedure, and the value after the stored procedure reference will be assigned to the global variable.
  • The in parameter assignment type can be a variable or a fixed value, while the out and inout parameter assignment types must be variables.

This is the end of this article about MySQL stored procedure in, out, and inout parameter examples and summary. For more information about MySQL stored procedure in, out, and inout parameters, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of creating, calling and managing MySQL stored procedures
  • Introduction to query commands for MySQL stored procedures
  • Detailed steps to modify MySQL stored procedures
  • Using cursor loop to read temporary table in Mysql stored procedure
  • Mysql modify stored procedure related permissions issue
  • In-depth explanation of MySQL stored procedures (in, out, inout)
  • How to create a table by month in MySQL stored procedure
  • A brief discussion on MySql views, triggers and stored procedures
  • Detailed example of using if statement in mysql stored procedure
  • Analysis of the advantages and disadvantages of MySQL stored procedures

<<:  Implementation of Docker private library

>>:  HTML table markup tutorial (22): row border color attribute BORDERCOLORLIGHT

Recommend

Several commonly used single-page application website sharing

CSS3Please Take a look at this website yourself, ...

A brief discussion on the whole process of Vue's first rendering

Table of contents 1. Vue initialization vue entry...

VMware workstation 12 install Ubuntu 14.04 (64 bit)

1. Installation Environment Computer model: Lenov...

How to install MySQL for beginners (proven effective)

1. Software Download MySQL download and installat...

CSS3 achieves various border effects

Translucent border Result: Implementation code: &...

mysql subquery and join table details

Table of contents 1. What is a subquery? 2. Self-...

The easiest way to debug stored procedures in Mysql

A colleague once told me to use a temporary table...

How to compile and install opencv under ubuntu

Easy installation of opencv2: conda install --cha...

MySQL 5.7.16 ZIP package installation and configuration tutorial

This article shares the installation and configur...

Common structural tags in XHTML

structure body, head, html, title text abbr, acro...

Docker custom network detailed introduction

Table of contents Docker custom network 1. Introd...

Summary of several APIs or tips in HTML5 that cannot be missed

In previous blog posts, I have been focusing on so...