I have the following Stored Procedure. When you run it, the syntax error 1064 is not returned as in the image below.
What am I missing?
I have the following Stored Procedure. When you run it, the syntax error 1064 is not returned as in the image below.
What am I missing?
Hello! Try changing the end of the mysql statement
As for example:
DELIMITER $$
CREATE PROCEDURE nome_procedimento ()
BEGIN
/*CORPO DO PROCEDIMENTO*/
END $$
DELIMITER ;
In this part:
END $$
DELIMITER ;
:)