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: SQL code online formatting and beautification tool: 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:
|
<<: Example of how to reference environment variables in Docker Compose
>>: Fabric.js implements DIY postcard function
Overview When a 500 or 502 error occurs during ac...
Table of contents 1. Anti-shake 2. Throttling 3. ...
It has been three or four months since I joined Wo...
This article shares the specific code of JS to ac...
Overview The fundamental difference between async...
1. Composite primary key The so-called composite ...
introduction I used postgresql database for some ...
Scenario simulation: The operation and maintenanc...
Just 15 lines of CSS to crash your iPhone Securit...
Preface This article uses pdo's preprocessing...
HTML tag: superscript In HTML, the <sup> tag...
Table of contents Function Introduction Rendering...
My page today also had garbled characters, so I s...
First, perform a simple Docker installation. To c...
tomcat server configuration When everyone is lear...