0
Currently what I have is basically this:
CREATE PROCEDURE `Teste`(
IN `@valorX` INT,
IN `@valorY` INT
)
NOT DETERMINISTIC CONTAINS SQL SQL SECURITY DEFINER
INSERT INTO tabelaX(colunaX) VALUES (@valorX)
INSERT INTO tabelaY(colunaY) VALUES (@valorY)
Note: The two tables nay has connection with each other.
I didn’t understand your doubt, I could explain it better?
– aa_sp
I want to know how to make two Insert’s in one Procedure in two different tables at the same time
– João Victor