How to delete procedure from MySQL
We can remove the stored procedure from MySQL using a simple query.
>DROP PROCEDURE name;
Here name should replaced with the name of the stored procedure.
That's all…
For Techs.... Techniques.... Technologies....
We can remove the stored procedure from MySQL using a simple query.
>DROP PROCEDURE name;
Here name should replaced with the name of the stored procedure.
That's all…