Skip to main content
The DROP PROCEDURE drops a .

Required privileges

To drop a procedure, the user must be the owner of the procedure.

Synopsis

drop_proc syntax diagram

Parameters

ParameterDescription
proc_nameThe name of one of more procedures to drop.
routine_paramAn optional list of the procedure parameters.

Examples

Drop a stored procedure

The following statement drops the :
DROP PROCEDURE delete_earliest_histories;

See also