Syntax
DROP PROCEDURE [IF EXISTS] procedure_path
Description
Deletes the procedure named in the current cluster. procedure_path is either procedure_name in the current database or database_name.procedure_name.
If IF EXISTS is specified, no error will be thrown if the procedure does not exist.
Related