如何将以下这些触发器保留在一个触发器中?
我已经尝试过了,但我不确定我在做什么错误?
下面是我的触发器
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;