[MySQL] – 執行錯誤 #1442

來源:互聯網
上載者:User

來源:http://hi.baidu.com/loveyurui/blog/item/1c657ac9131b9a15bf09e67d.html

 

+----+------+------+
| Id |  sal |  num |
+----+------+------+
| 13 |  600 |   10 |
| 14 |  200 |   10 |
| 15 |  300 |   10 |
+----+------+------+

 

寫好的MySQL觸發器 如下:

CREATE TRIGGER ins_trig before insert ON hello.yy
    FOR EACH ROW
    BEGIN
    update yy set sal=sal+100 where num>10
    END;

這個觸發器是可以執行成功的 然後我們測試(啟用)

insert into yy values(0,2000,11);

理論上按照觸發器的定義插入的值應該為16 2100 11 可是令人鬱悶的錯誤出現了:

ERROR 1442 (HY000): Can't update table 'yy' in stored function/trigger because i
t is already used by statement which invoked this stored function/trigger.

網上找遍了所有的解決辦法 最後在國外的一個文章上找到了solution

將觸發器定義改成如下:

CREATE TRIGGER ins_trig before insert ON hello.yy
    FOR EACH ROW
    BEGIN  
    if new.num>10 then  
        set new.sal = new.sal + 100;      
    end if;
    END;

然後插入剛才的測試值就ok了

mysql> insert into yy values(0,2000,11);
Query OK, 1 row affected (0.01 sec)

mysql> select * from yy;
+----+------+------+
| Id |  sal |  num |
+----+------+------+
| 13 |  600 |   10 |
| 14 |  200 |   10 |
| 15 |  300 |   10 |
| 16 | 2100 |   11 |
+----+------+------+
5 rows in set (0.00 sec)

原帖串連為:http://crazytoon.com/2008/03/03/mysql-error-1442-hy000-cant- update-table-t1-in-stored-functiontrigger-because-it-is-already-used-by-statement-which-invoked-this-stored-functiontrigger/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.