如何將下面的這些觸發器保存到一個觸發器中?如何設置mysql多觸發器
我試過了,但我不確定我在做什麼錯誤?
下面是我觸發的
create trigger Disminuir_Existencia1 after insert on detalle for each row update producto set existencia = existencia-new.Cantidad where id_p=new.id_p
create trigger Aumentar_Existencia after insert on detalle for each row update producto set existencia =if(new.activo = 0, producto.existencia + new.cantidad,producto.existencia) where new.id_P = producto.id_P
CREATE TRIGGER aumentar AFTER insert on detalle for each row update factura set total = ( select producto.precio * new.cantidad from producto where new.id_p=producto.id_p) where new.Folio= factura.folio;