This article uses examples to explain the principles and usage of MySQL cursors. Share with you for your reference, the details are as follows: In this article:
Release date: 2018-04-18 What is a cursor:
Replenish:
Create a cursor:
Using cursors:
create procedure p2() begin declare id int; declare name varchar(15); --Declare cursor declare mc cursor for select * from class; -- Open the cursor open mc; -- Get result loop -- Loop and transfer the contents of the table to class2 fetch mc into id,name; -- Here is to display the result insert into class2 values(id,name); -- Close the cursor end loop; close mc; end; The above code will have an error create procedure p3() begin declare id int; declare name varchar(15); declare flag int default 0; --Declare cursor declare mc cursor for select * from class; declare continue handler for not found set flag = 1; -- Open the cursor open mc; -- Get the result l2:loop fetch mc into id,name; if flag=1 then -- when fetch fails, handler continues leave l2; end if; -- Here is to display the result insert into class2 values(id,name); -- Close the cursor end loop; close mc; end; call p3();-- no error select * from class2; Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL transaction operation skills", "MySQL stored procedure skills", "MySQL database lock related skills summary" and "MySQL common function summary" I hope this article will be helpful to everyone's MySQL database design. You may also be interested in:
|
>>: Using Openlayer in Vue to realize loading animation effect
Here are two ways to install MySQL under Linux: y...
Table of contents Overview Index data structure B...
When people are working on a backend management s...
This is the content of React 16. It is not the la...
MySQL is a relational database management system ...
【Problem Analysis】 We can use the chown command. ...
Some of you may have heard that the order of trav...
The shutdown.bat file has a sentence if not "...
one. Why build a Nexus private server? All develo...
Table of contents 1. Check the current status of ...
Table of contents 1. General steps for SQL optimi...
Table of contents 1. Basic conditions for databas...
According to null-values, the value of null in My...
Table of contents Case scenario Solving the probl...
Table of contents 1. What is Ts 2. Basic Grammar ...