mysql 存储过程--指针

BEGIN
DECLARE Done int DEFAULT 0;
DECLARE cjobid int;
DECLARE crow int;
DECLARE crows int;
DECLARE cendtime datetime;
DECLARE cstarttime datetime;
DECLARE cr CURSOR FOR SELECT jobid,starttime,endtime from v_om_ab_timebar;

DECLARE CONTINUE HANDLER FOR SQLSTATE '02000' SET Done = 1;

open cr;
FETCH NEXT FROM cr INTO cjobid,cstarttime,cendtime;
REPEAT
    SELECT count(*) INTO crow FROM `om_ab_timebar` where jobid=cjobid and endtime=cstarttime;
    SELECT count(*) INTO crows FROM `om_ab_timebar` where jobid=cjobid and endtime=cendtime;
    IF crow+crows=0 THEN
    insert into `om_ab_timebar`(starttime,endtime,jobid) values(cstarttime,cendtime,cjobid);
    ELSE
    update `om_ab_timebar` set endtime=cendtime where jobid=cjobid and endtime=cstarttime;
    END IF;
FETCH NEXT FROM cr INTO cjobid,cstarttime,cendtime;
UNTIL Done END REPEAT;
CLOSE cr;
INSERT into om_ab_fg_output(fg,endtime,route,jobid,type,statue) SELECT * from v_om_ab_fg_threeminute_ok;
END

 

转载于:https://www.cnblogs.com/redhSin/p/6208121.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值