合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
[TOC] ### 存储过程声明 ***** * 关键字:Procedure * 语法格式 ``` -- 参数有三种写法 -- 入参,出参 -- 参数格式 参数名称 in(可以省略)/out/in out 数据类型 create or replace procedure addDVDP(dvdName in varchar2, mResult out number) as begin insert into dvd_dvd values(default,dvdName,default,default,default); mResult:=1; commit; exception when others then mResult := 0; rollback; end addDVDP; ``` ### 游标的使用 ***** 定义游标 ``` cursor cur_ktids is select distinct ktid from yx_ktsj where ktid <> 0; ```