#1064 - You have an error in your SQL syntax
Hi
Im new in sql and Im trying to create trigger to update a date field on a table. It gives me an error and Im not able to find where is the mistake... any help? thanks
DELIMITER $$
CREATE TRIGGER subject1 AFTER INSERT ON table1
FOR EACH ROW BEGIN
DECLARE variable1 int;
SET variable1 = (select dayJob from table1);
IF variable1 > 0 THEN
table1.newdate = DATE_ADD(table1.newdate,INTERVAL variable1 DAY)
end if
END$$
DELIMITER ;
Subject
Views
Written By
Posted
#1064 - You have an error in your SQL syntax
1681
May 23, 2017 09:32AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.