On the MySQL command line I gave a user permission to access a stored procedure (Stored procedure) with the following syntax:
GRANT EXECUTE ON PROCEDURE Acervo_bibliografico.InsertarDatoUsuario
TO 'Brandon_Padilla'@'localhost';
Now I want to remove the privilege but I do not know what syntax to use. How would it be done?
The database is: Acervo_bibliografico
and the stored procedure is InsertarDatoUsuario
.