zoukankan      html  css  js  c++  java
  • 存储过程

    CREATE OR REPLACE
    procedure test3 (sss in varchar) is
    icount number;
    begin
    DBMS_OUTPUT.PUT_LINE('开始 去重 AID:'|| sss);
    for wf in(select * from scorelog where (studentid,aid) in (select sr.studentid,sr.aid from scorelog sr group by sr.studentid,sr.aid having count(*) >1) and rowid not in (select max(rowid) from scorelog sr group by sr.studentid,sr.aid having count(*) >1))
    loop
    update score set SCORE = (SCORE - wf.score) where STUDENTID = wf.studentid;
    select score into icount from score where studentid = wf.studentid;
    DBMS_OUTPUT.PUT_LINE('更新score***STUDENTID:'|| wf.studentid || '减' || wf.score || '剩余'|| icount);
    IF wf.type='1' THEN
    BEGIN
    delete x_certificate where keyid = wf.aid;
    END;
    END IF;

    end loop;
    delete from scorelog where (studentid,aid) in (select sr.studentid,sr.aid from scorelog sr group by sr.studentid,sr.aid having count(*) >1) and rowid not in (select max(rowid) from scorelog sr group by sr.studentid,sr.aid having count(*) >1);

    for wf2 in(select * from literscorelog where (studentid,aid,LITERSCOREID) in (select sr.studentid,sr.aid,sr.LITERSCOREID from literscorelog sr group by sr.studentid,sr.aid,sr.LITERSCOREID having count(*) >1) and rowid not in (select max(rowid) from literscorelog sr group by sr.studentid,sr.aid,sr.LITERSCOREID having count(*) >1))
    loop
    update LITERSCORE set SCORE = (SCORE- wf2.score) where KEYID = wf2.literscoreid and STUDENTID = wf2.studentid;

    --DBMS_OUTPUT.PUT_LINE('更新LITERSCORE***studentid:' || wf2.studentid || '减' || wf2.score);
    select score into icount from LITERSCORE where KEYID = wf2.literscoreid and STUDENTID = wf2.studentid;
    DBMS_OUTPUT.PUT_LINE('更新LITERSCORE***STUDENTID:'|| wf2.studentid || '减' || wf2.score || '剩余'|| icount);
    end loop;
    delete from literscorelog where (studentid,aid,LITERSCOREID) in (select sr.studentid,sr.aid,sr.LITERSCOREID from literscorelog sr group by sr.studentid,sr.aid,sr.LITERSCOREID having count(*) >1) and rowid not in (select max(rowid) from literscorelog sr group by sr.studentid,sr.aid,sr.LITERSCOREID having count(*) >1);
    DBMS_OUTPUT.PUT_LINE('执行结束');
    end;

  • 相关阅读:
    webpack 爬坑
    npm install 安装依赖一直失败(解决)
    vue中使用keepAlive组件缓存,如何清缓存(有些时候页面不需要缓存)
    JS 解决安卓手机输入框被软键盘遮住的问题
    vue项目keep-alive返回记住滚动条位置
    vue中监听路由参数变化
    win10 优化
    提升工作能力的表达能力
    TFS变更地址
    iis php web.config处理404,500等,跳转友好页面,显示500错误信息
  • 原文地址:https://www.cnblogs.com/krlin/p/9172312.html
Copyright © 2011-2022 走看看