ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[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; ```