Syntax Error in MySQL Procedure

0

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?

    
asked by anonymous 18.03.2015 / 17:11

1 answer

0

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 ;

:)

    
08.04.2018 / 17:23