Oracle 中游标的使用

2014-11-24 18:26:02 · 作者: · 浏览: 0



使用行变量来获取游标信息




隐式游标




动态游标
定义
declare type emp_cur_type is ref cursor return emp%rowtype;


new_emp_cur_type emp_cur_type;


open new_emp_cur_type for select * from emp;