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:
2. Changes in global variable values when calling a stored procedure mysql> select @num1,@num2,@num3; Summary 2:
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:
|
<<: Implementation of Docker private library
>>: HTML table markup tutorial (22): row border color attribute BORDERCOLORLIGHT
1. Window -> preferences to open the eclipse p...
Now, let me ask you a question. What happens when...
The complete steps of Centos7 bridge network conf...
Table of contents 1. Signal List 1.1. Real-time s...
Preface In the development process, defining vari...
Nginx uses a fixed number of multi-process models...
Table of contents origin status quo Cancel reques...
Table of contents 1. What is copy_{to,from}_user(...
How to configure custom path aliases in Vue In ou...
a : Indicates the starting or destination positio...
This article uses examples to describe MySQL dupl...
01. Command Overview The paste command will merge...
This article example shares the specific code of ...
MySQL 8.0.25 decompression version installation t...
This article describes how to use docker to deplo...