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
CSS3Please Take a look at this website yourself, ...
Table of contents 1. Vue initialization vue entry...
1. Installation Environment Computer model: Lenov...
1. Software Download MySQL download and installat...
This article describes the examples of creating a...
Translucent border Result: Implementation code: &...
Table of contents 1. What is a subquery? 2. Self-...
A colleague once told me to use a temporary table...
Go to https://dev.mysql.com/downloads/mysql/ to d...
Easy installation of opencv2: conda install --cha...
This article shares the installation and configur...
structure body, head, html, title text abbr, acro...
Table of contents 1. Solution 2. MySQL character ...
Table of contents Docker custom network 1. Introd...
In previous blog posts, I have been focusing on so...