MySQL stored procedure-cursor usage fetch each row of records (multiple fields)

Source: Internet
Author: User
Delimiter $create PROCEDURE phonedeal () BEGIN    DECLARE  ID varchar (+);   --ID    DECLARE  phone1  varchar (+);--Phone    DECLARE  password1  varchar (32);--Password    DECLARE  name1 varchar (+);   --ID    --traverse end of data flag    DECLARE done INT DEFAULT FALSE;    --Cursor    DECLARE cur_account cursor for select phone,password,name from Account_temp;    --binds the end flag to the cursor    DECLARE CONTINUE HANDLER for not FOUND SET do = TRUE;       --Opening the cursor open  cur_account;          --Traverse    read_loop:loop            --Fetch multiple fields            fetch NEXT from Cur_account to  phone1,password1,name1;             IF do then                LEAVE read_loop;             END IF;        --The action you want to do insert into account        (id,phone,password,name) value (UUID (), Phone1,password1,concat (name1, ' parent '));    END LOOP;    CLOSE Cur_account; END $

  

MySQL stored procedure-cursor usage fetch each row of records (multiple fields)

Related Article

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.