Two ways to write stored procedures in Mysql with and without return values

Two ways to write stored procedures in Mysql with and without return values

Process 1: with return value:

 drop procedure if exists proc_addNum;
 create procedure proc_addNum (in x int, in y int, out sum int)
 BEGIN
 SET sum = x + y;
 end

Then, execute the process and output the return value:

 call proc_addNum(2,3,@sum);
select @sum;

Procedure 2: Without return value:

 drop procedure if exists proc_addNum;
 create procedure proc_addNum (in x int, in y int)
 BEGIN
 DECLARE sum int;
 SET sum = x + y;
 SELECT sum;
 end

Execution process:

 call proc_addNum(2,3);

Summarize

The above is the two ways of writing MySQL stored procedures with and without return values ​​that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time!

You may also be interested in:
  • Simple writing of MYSQL stored procedures and functions
  • Detailed example of MySQL data storage process parameters
  • Detailed explanation of MySQL stored procedures, cursors, and transaction examples
  • How to create a stored procedure in MySQL and add records in a loop
  • Detailed explanation of the entry-level use of MySql stored procedure parameters
  • mysql uses stored procedures to implement tree node acquisition method

<<:  Detailed steps for building, running, publishing, and obtaining a Docker image for the first time

>>:  Steps for Docker to build its own local image repository

Recommend

Nginx dynamically forwards to upstream according to the path in the URL

In Nginx, there are some advanced scenarios where...

Summary of the differences between get and post requests in Vue

The operating environment of this tutorial: Windo...

HTML n ways to achieve alternate color code sample code

This article mainly introduces the sample code of...

Detailed explanation of Vue login and logout

Table of contents Login business process Login fu...

Nginx http health check configuration process analysis

Passive Check With passive health checks, NGINX a...

Complete list of CentOS7 firewall operation commands

Table of contents Install: 1. Basic use of firewa...

Ideas and codes for realizing magnifying glass effect in js

This article example shares the specific code of ...

Vue mobile terminal determines the direction of finger sliding on the screen

The vue mobile terminal determines the direction ...

Detailed explanation of Vue components

<body> <div id="root"> <...

Solve the problem of black screen when starting VMware virtual machine

# Adjust VMware hard disk boot priority Step 1: E...

Comparison between Redis and Memcache and how to choose

I've been using redis recently and I find it ...

A brief understanding of the differences between MySQL InnoDB and MyISAM

Preface MySQL supports many types of tables (i.e....

Install and configure ssh in CentOS7

1. Install openssh-server yum install -y openssl ...

Detailed explanation of Vue's monitoring properties

Table of contents Vue monitor properties What is ...