DROP PROCEDURE deletes an existing stored procedure.
None.
1 | DROP PROCEDURE [ IF EXISTS ] procedure_name ; |
Sends a notice instead of an error if the stored procedure does not exist.
Specifies the name of the stored procedure to be deleted.
Value range: An existing stored procedure name.
Delete a stored procedure.
1 | DROP PROCEDURE prc_add; |