Error in Trigger

0

I have a problem This code does not work. I miss this error # 1064 - Something is wrong in its syntax near '' on line 6

CREATE OR REPLACE TRIGGER TR_MORA
AFTER INSERT on servicios
FOR EACH ROW
BEGIN
INSERT INTO deteconomico(FECHA_PAGAR)
VALUES(NEW.FECHA_PAG);
    
asked by user63014 16.10.2017 в 04:32
source

1 answer

-1

The word "END" is missing. at the end of the query

    
answered by 16.10.2017 в 04:40