MySQL Simple cursor

Source: Internet
Author: User


Example of <=====================mysql Tour signs =====================>

CREATE PROCEDURE ' test '. ' New_procedure ' ()
BEGIN
--need to define variables that receive cursor data
DECLARE a CHAR (16);
--Traversal data End flag
DECLARE done INT DEFAULT FALSE;
--Cursors
DECLARE cur CURSOR for SELECT c_username from T_userinfo;

--Bind the end flag to the cursor
DECLARE CONTINUE HANDLER for don't FOUND SET done = TRUE;
--Open cursor
OPEN cur;

--Start cycle
Read_loop:loop
--Extract the data in the cursor, there is only one, and many words are the same;
FETCH cur into A;
-At the end of the declaration
IF do Then
LEAVE Read_loop;
END IF;
--Here's what you want to do with the loop of events

INSERT into T_test VALUES (a);

END LOOP;
--Close cursor
CLOSE cur;
END

MySQL Simple cursor

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.