LAST_INSERT_ID () MySQL

J'ai une question MySQL qui, je pense, doit être assez simple. Je dois renvoyer le DERNIER ID INSÉRÉ de table1 lorsque j'exécute la requête MySql suivante: INSERT INTO table1 (title,userid) VALUES ('test',1); INSERT INTO table2 (parentid,otherid,userid) VALUES (LAST_INSERT_ID(),4,1); SELECT...