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:
|
>>: Steps for Docker to build its own local image repository
In Nginx, there are some advanced scenarios where...
The operating environment of this tutorial: Windo...
This article mainly introduces the sample code of...
Table of contents Login business process Login fu...
Passive Check With passive health checks, NGINX a...
Table of contents Install: 1. Basic use of firewa...
This article example shares the specific code of ...
Problem: The PHP program on one server cannot con...
The vue mobile terminal determines the direction ...
<body> <div id="root"> <...
# Adjust VMware hard disk boot priority Step 1: E...
I've been using redis recently and I find it ...
Preface MySQL supports many types of tables (i.e....
1. Install openssh-server yum install -y openssl ...
Table of contents Vue monitor properties What is ...