存储过程它的使用主要是完成一项复杂的功能,如果直接使用sql语句则每次都需要进行编译,而存储过程只需要编译一次,以后直接调用即可。格式如下。
create or replace procedure procedure_name as begin extention; end;
Oracle 储存过程、函数、触发器
原文:https://www.cnblogs.com/feiqiangsheng/p/13781714.html