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;

  • 相关阅读:
    MYSQL视图的学习笔记
    MYSQL常用操作函数的封装
    table表格边框样式
    用于防SQL注入的几个函数
    Html中版权符号的字体选择问题(如何让版权符号更美观)
    拿出“请勿打扰”的态度来
    editplus批量删除html代码空行
    解决&nbsp在IE与firefox宽度不一致的问题
    解决IE6下DIV无法实现1px高度问题
    处理落后员工
  • 原文地址:https://www.cnblogs.com/thinkbig/p/10136952.html
Copyright © 2011-2022 走看看