码迷,mamicode.com
首页 > 数据库 > 详细

MySQL存储过程(游标)

时间:2018-05-02 13:23:15      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:value   oop   mysql存储过程   begin   多个   select   The   操作   ext   

BEGIN
DECLARE userid varchar(64); -- id
-- 遍历数据结束标志
DECLARE done INT DEFAULT FALSE;
-- 游标
DECLARE cur_account CURSOR FOR select id from s_user where 1=1;
-- 将结束标志绑定到游标
DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
-- 打开游标
OPEN cur_account;
-- 遍历
read_loop: LOOP
-- 取值 取多个字段
FETCH NEXT from cur_account INTO userid;
IF done THEN
LEAVE read_loop;
END IF;

-- 你自己想做的操作
insert into s_user_role(uid,rid) value(userid,7);
insert into s_user_role(uid,rid) value(userid,19);
END LOOP;
CLOSE cur_account;
END

MySQL存储过程(游标)

标签:value   oop   mysql存储过程   begin   多个   select   The   操作   ext   

原文地址:https://www.cnblogs.com/Zz-maker/p/8979182.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!