Please help me with this query.
I have two tables. I insert values into one of them. After that I would like to check if one of the value that was inserted is in the second table. If it isn't I would like to insert this value and take the id that was created and update by it this row of the first table from where I take the value.
DELIMITER //
CREATE TRIGGER check_if_exists
AFTER INSERT ON my_first_table
FOR EACH ROW
BEGIN
IF NOT EXISTS
(SELECT my_first_table.value1, my_second_table.value2
FROM my_first_table, my_second_table
WHERE my_first_table.value1 = my_second_table.value2)
INSERT INTO my_second_table (value2)
SELECT (value1) FROM my_first_table
WHERE
value1 NOT IN (SELECT DISTINCT value2 FROM my_second_table)
SET my_second_table.id = (SELECT LAST_INSERT_ID());
INSERT INTO my_first_table (value3)
SELECT LAST_INSERT_ID() FROM my_second_table
WHERE value2 IS IN (SELECT value1 FROM my_first_table)
END IF;
END//
DELIMITER ;
I don't know what I'm doing wrong. I get the error #1064
"You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INSERT INTO my_second_table (value2) SELECT (value1) FROM my_first_table WHERE..."
IF NOT EXISTScan't be used like that. The way you write it, is a condition (part of a where-clause). In stored procedures, use IF-THEN-END IF. – Konerak Apr 10 '12 at 18:20;after the statements... – Konerak Apr 10 '12 at 18:41