Vous pouvez utiliser STORED PROCEDURE
dessus pour que vous n'appeliez qu'une seule fois depuis le niveau application. Exemple,
DELIMITER $$
CREATE PROCEDURE InsertBook
(
IN _Title INT,
IN _AwardName VARCHAR(35),
IN _Year INT
)
BEGIN
INSERT INTO Books (Title)
VALUES(_Title);
-- since the ID is set as AUTO_INCREMENT
-- there are two ways to do how you can get the ID
-- from the Books Table and insert it
-- on BookAwards
-- FIRST WAY
-- by using LAST_INSERT_ID()
SET @last_ID = LAST_INSERT_ID();
-- SECOND WAY
-- by using MAX()
-- SET @last_ID = (SELECT MAX(ID) FROM Books);
INSERT INTO BookAwards(ID, AwardName, Year)
VALUES (@last_ID, _AwardName, _Year);
END $$
DELIMITER ;
Et au niveau de l'application ou sur toutes les sources que vous souhaitez appeler cette procédure,
CALL InsertBook('Lost Art', 'Best in Churva', 2013);
Pour des raisons de sécurité, vous pouvez toujours paramétrer la procédure, par exemple
CALL InsertBook(?, ?, ?);