Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この愚かなことで私の心を失っているエラーを見つけるのを手伝ってください....
CREATE TRIGGER ControlVoto BEFORE INSERT ON havotato FOR EACH ROW BEGIN IF (NEW.voto<0) then insert into Errori(id_errore) values(1) end IF; end
式で :NEW を使用する必要があります
CREATE TRIGGER ControlVoto BEFORE INSERT ON havotato FOR EACH ROW BEGIN IF (:NEW.voto<0) then insert into Errori(id_errore) values(1) end IF; end