Código SQL:
Ver original
CREATE OR REPLACE TRIGGER trigger5 after INSERT ON empleado FOR each ROW BEGIN IF inserting THEN IF :NEW.departamento.gasto_total < 2500000 THEN UPDATE departamento SET gasto_total = gasto_total + :NEW.salario WHERE codept = :NEW.codept; ELSE dbms_output.put_line('Error'); END IF; END IF; END;
ayuda por favor, estoy desesperada.