Detailed explanation of MySQL stored procedures, cursors, and transaction examples The following is a MySQL database stored procedure that I have written. I keep it for archiving and use it for reference in the future. Among them, stored procedures, cursors (double loops), and transactions are involved. [Note]: The comments in the code are only for the current business and can be ignored. The code is as follows: DELIMITER $$ DROP PROCEDURE IF EXISTS `transferEmailTempData`$$ CREATE PROCEDURE transferEmailTempData(IN jobId VARCHAR(24)) BEGIN DECLARE idval VARCHAR(24) DEFAULT ''; DECLARE taskIdval VARCHAR(24) DEFAULT ''; DECLARE groupIdval VARCHAR(24) DEFAULT ''; DECLARE emailval VARCHAR(50) DEFAULT ''; /*Identify whether there is an identical data in the formal table, i.e., groupId and email are the same*/ DECLARE infoId VARCHAR(24) DEFAULT ''; /*Transaction error*/ DECLARE err INT DEFAULT 0; /*Submit when a certain number is reached, counter*/ DECLARE counts INT DEFAULT 0; /*Identify whether it has been rolled back*/ DECLARE isrollback INT DEFAULT 0; /*When the cursor is traversing, it is used as a mark to determine whether all records have been traversed*/ DECLARE done INTEGER DEFAULT 0; /*Get the data of the task in the temporary table*/ DECLARE cur CURSOR FOR SELECT id,taskId,groupId,email FROM `t_email_data_temp` WHERE taskId=jobId; /*Query whether there are identical records based on group id and email*/ DECLARE cur2 CURSOR FOR SELECT id FROM `t_email_info` e WHERE e.`group_id` = groupIdval AND e.`email_address` = emailval; /* Error occurs, set to 1, rollback as long as an exception occurs*/ DECLARE CONTINUE HANDLER FOR SQLEXCEPTION SET err=1; /*Declare that when the cursor traverses all records, the flag variable will be set to a certain value*/ DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1; /*Start transaction*/ START TRANSACTION; /*Open cursor*/ OPEN cur; /*Use LOOP to loop through*/ out_loop:LOOP /*Assign the field value corresponding to each result to the variable*/ FETCH cur INTO idval,taskIdval,groupIdval,emailval; IF done = 1 THEN LEAVE out_loop; END IF; /*Open the second cursor*/ OPEN cur2; SET done = 0; FETCH cur2 INTO infoId; /*If the official table does not have the same groupId and email record, add it to the official table*/ IF done = 1 THEN /*Insert into the formal table*/ INSERT INTO `t_email_info` VALUES(idval,emailval,groupIdval,0,'',NOW(),'admin',NOW(),'admin'); /*Delete temporary data*/ DELETE FROM `t_email_data_temp` WHERE id = idval; /*Counter, submit every 1000 items*/ SET counts = counts + 1; /*Exception occurred, rollback*/ IF err=1 THEN SET isrollback=1; ROLLBACK; ELSE IF counts = 1000 THEN COMMIT; /*After reaching 1000 submissions, reset the counter*/ SET counts=0; END IF; END IF; ELSE /*If the same record already exists, delete it*/ IF done=0 THEN DELETE FROM `t_email_data_temp` WHERE id = idval; END IF; END IF; FETCH cur2 INTO infoId; CLOSE cur2; /*Control the external loop. This step cannot be missing, otherwise it will end after only one loop*/ SET done=0; END LOOP out_loop; CLOSE cur; /*If no rollback event has occurred, update the task status*/ /*If the task is rolled back and the task status is not updated, the remaining uncommitted data will be added to the formal table again when the task is executed next time*/ IF isrollback=0 THEN UPDATE `t_email_task` t SET t.`if_finish` = 1 WHERE t.`id`=jobId; END IF; END$$ DELIMITER ; The above is an explanation of MySQL stored procedures, cursors, and transactions. If you have any questions, please leave a message or discuss in the community of this site. Thank you for reading and I hope it can help you. Thank you for your support of this site! You may also be interested in:
|
<<: Summary of solutions to common Linux problems
>>: JavaScript custom plug-in to implement tab switching function
Change the default style of select, usually throug...
When setting the text in the search text box, the...
1. Background Although I have read many blogs or ...
If the words in the sql statement conflict with t...
Query the MySQL source first docker search mysql ...
Vue data two-way binding principle, but this meth...
Find the problem I recently migrated the storage ...
Preface This article mainly shares with you the g...
1. Basic Specifications (1) InnoDB storage engine...
Effect The effect is as follows Implementation ...
Steps: 1. Install MySQL database 1. Download the ...
Let’s take a look at a chestnut first EXPLAIN sel...
1. Docker network management 1. Docker container ...
Preface I recently encountered a problem at work....
1. The Linux server configures /etc/hosts.deny to...