文档中心MogDBMogDB StackUqbar
v1.1

文档:v1.1

DROP PROCEDURE

功能描述

删除已存在的存储过程。

注意事项

无。

语法格式

DROP PROCEDURE [ IF EXISTS  ] procedure_name ;

参数说明

  • IF EXISTS

    如果指定的存储过程不存在,发出一个notice而不是抛出一个错误。

  • procedure_name

    要删除的存储过程名称。

    取值范围: 已存在的存储过程名。

示例

create procedure test_pro(
section     number(6),
salary_sum out number(8,2),
staffs_count out integer)
is
begin
   select sum(salary), count(*) into salary_sum, staffs_count from staffs where section_id = section;
end;
/

drop procedure if exists test_pro (section numeric,out salary_sum numeric,OUT staffs_count integer);
Copyright © 2011-2024 www.enmotech.com All rights reserved.