mysql存储过程修改语句_MySQL存储过程多条修改语句

DROP procedure Sel_Function_ActivityPastDue

DELIMITER $$

DROP procedure IF EXISTS`shouyi`.`Sel_Function_ActivityPastDue` $$

create procedure `shouyi`.`Sel_Function_ActivityPastDue` ( Endtime varchar(20))

begin

declare v int;

declare vcount int default 0;

declare NewActivity_IDs int; /**活动ID**/

declare CheckCunt int default 0; /**活动ID**/

select count(*) into v from POS_GOODS_Activity where Activity_EndTime<=Endtime;

LOOP_LABLE:loop /**开始循环**/

select Activity_ID into NewActivity_IDs from POS_GOODS_Activity where Activity_EndTime<=Endtime and Activity_Status=0 limit 1;

select count(*) into CheckCunt from POS_GOODS_Activity where Activity_EndTime<=Endtime and Activity_Status=0 limit 1;

if CheckCunt>0 then

update POS_GOODS_Activity set Activity_Status=2 where Activity_ID=NewActivity_IDs limit 100;

select NewActivity_IDs;

update POS_GOODS_NewActivity set NewActivity_Status=2 where NewActivity_ID=NewActivity_IDs limit 100;

select v;

end if;

set v=v-1;

set vcount=vcount+1;

if v<=0 then

leave LOOP_LABLE;/**跳出循环**/

end if;

end loop;

select vcount;

end $$

DELIMITER ;

原文:https://www.cnblogs.com/pang572936554/p/9678512.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值