Anda dapat menggunakan STORED PROCEDURE
ini sehingga Anda hanya akan menelepon sekali dari tingkat aplikasi. Contoh,
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 ;
Dan pada tingkat aplikasi atau pada sumber apa pun yang Anda inginkan untuk memanggil prosedur ini,
CALL InsertBook('Lost Art', 'Best in Churva', 2013);
Untuk tujuan keamanan, Anda masih dapat membuat parameter prosedur, mis.
CALL InsertBook(?, ?, ?);