-
SELECT USER_ID FROM ua; 会返回USER_ID的列表
2.通过循环来逐条更新符合USER_ID的记录
delimiter $$
DROP PROCEDURE IF EXISTS test_update;
create PROCEDURE test_update ()
begin
DECLARE tempUserId BIGINT(20);
DECLARE done INT DEFAULT 0;
DECLARE cur CURSOR FOR SELECT USER_ID FROM ua;
DECLARE continue handler for not found set done = 1;
OPEN cur;
users_loop: LOOP
FETCH cur INTO tempUserId;
IF done=1 THEN
LEAVE users_loop;
END IF;
update tb_cpl_user_info set CHANNEL ='abc123' WHERE user_id = tempUserId;
END LOOP users_loop;
CLOSE cur;
end$$
delimiter ;
call test_update;
版权声明:本文为CSDN博主「mingchengtx」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/mingchengtx/article/details/118680193