How to create a stored procedure in MySQL and add records in a loop

How to create a stored procedure in MySQL and add records in a loop

This article uses an example to describe how to create a stored procedure in MySQL and add records in a loop. Share with you for your reference, the details are as follows:

First create, then call:

-- Create stored procedure DELIMITER; //
create procedure myproc()
begin
declare num int;
set num=1;
while num <= 24 do
insert into t_calendar_hour(hourlist) values(num);
set num=num+1;
end while;
commit;
end;//
-- Call the stored procedure CALL myproc();

PS: Here are two commonly used SQL online tools for your reference (including SQL statement usage instructions):

SQL online compression/formatting tool:
http://tools.jb51.net/code/sql_format_compress

SQL code online formatting and beautification tool:
http://tools.jb51.net/code/sqlcodeformat

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL stored procedure skills", "MySQL common function summary", "MySQL log operation skills", "MySQL transaction operation skills summary" and "MySQL database lock related skills summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Simple writing of MYSQL stored procedures and functions
  • Detailed example of MySQL data storage process parameters
  • Two ways to write stored procedures in Mysql with and without return values
  • Detailed explanation of MySQL stored procedures, cursors, and transaction examples
  • Detailed explanation of the entry-level use of MySql stored procedure parameters
  • mysql uses stored procedures to implement tree node acquisition method

<<:  Example of how to reference environment variables in Docker Compose

>>:  Fabric.js implements DIY postcard function

Recommend

Detailed explanation of PHP+nginx service 500 502 error troubleshooting ideas

Overview When a 500 or 502 error occurs during ac...

Difference and implementation of JavaScript anti-shake and throttling

Table of contents 1. Anti-shake 2. Throttling 3. ...

A brief summary of my experience in writing HTML pages

It has been three or four months since I joined Wo...

JS realizes the effect of Baidu News navigation bar

This article shares the specific code of JS to ac...

JS Asynchronous Stack Tracing: Why await is better than Promise

Overview The fundamental difference between async...

How does Zabbix monitor and obtain network device data through ssh?

Scenario simulation: The operation and maintenanc...

Analysis of the principle of using PDO to prevent SQL injection

Preface This article uses pdo's preprocessing...

The actual process of implementing the guessing number game in WeChat applet

Table of contents Function Introduction Rendering...

How to build php7 with docker custom image

First, perform a simple Docker installation. To c...

How to configure tomcat server for eclipse and IDEA

tomcat server configuration When everyone is lear...