Hello I am trying to insert data in 3 mysql tables which are connected together.
I want to insert data in first table, pickup the record id (which is auto increment field), insert that id into second table and then pick the record id from second table (again auto increment field) and insert it into third table.
So far I am only able to insert data in 2 table and here is my trigger syntax:
CREATE TRIGGER insert_secondtable_after
AFTER insert On users
FOR EACH ROW
BEGIN
insert into user_log (username, name) values(new.user_ID, new.user_name);
END
Now I want to pick the insert id from user_log and insert it into 3rd table.
If this can be achieved without triggers please let me know, I know one way is to use 3 seperate queries, but I am keeping it as last resort.
Thanks