zoukankan      html  css  js  c++  java
  • 意外报错的出发器

    show triggers;
    drop trigger pyb_tk_exam_subject_set
    delimiter
    ////////此方法是错误的,刚刚插入的当前行,不能用update会造成死循环
    ////////操作其它表,用update ,操作当前表用 before set
    create trigger pyb_tk_exam_subject_set after update on pyb_tk_exam_subject for each row
    begin
      if (NEW.child_num > 0 and NEW.score > 0) then
        update pyb_tk_exam_subject set totalscore = child_num * score where ID = NEW.ID;
      end if;
    end;
    ////////此方法是错误的,刚刚插入的当前行,不能用update会造成死循环,请修改 注意: ===before
    ////////此方法是错误的,刚刚插入的当前行,不能用update会造成死循环,请修改 注意: ===before
    ////////此方法是错误的,刚刚插入的当前行,不能用update会造成死循环,请修改 注意: ===before
    create trigger pyb_tk_exam_subject_set before update on pyb_tk_exam_subject for each row
    begin
      if (NEW.child_num > 0 and NEW.score > 0) then
        set NEW.totalscore=NEW.child_num * NEW.score;
      end if;
    end;

    //////例子二
    create trigger pyb_tk_exam_test_record_set before update on pyb_tk_exam_test_record for each row
    begin
      if (NEW.eid >0) then
        set NEW.topid=(select topid from pyb_tk_exam_test where pyb_tk_exam_test.id=NEW.eid);
        set NEW.fid=(select fid from pyb_tk_exam_test where pyb_tk_exam_test.id=NEW.eid);
        set NEW.cid=(select cid from pyb_tk_exam_test where pyb_tk_exam_test.id=NEW.eid);
      end if;
    end;

  • 相关阅读:
    Git 将当前修改提交到指定分支
    Linux 安装中文字体
    枚举的处理,MybaitsPlus+JackSon
    SpringBoot JackSon全局配置
    SQL查询数据库中所有表名
    Feign url配置/注解
    如何让py生成pyd
    第二十九篇 -- PY程序返回值问题
    解决VS2017调试卡住的问题
    第二十八篇 -- 自定义窗口切换
  • 原文地址:https://www.cnblogs.com/thinkbig/p/10136952.html
Copyright © 2011-2022 走看看