declare
my_cur sys_refcursor; --定义游标变量
type v_record is record( --定义 record类型
obj_id number,
obj_name varchar2(2000));
my_record v_record; --定义record变量
begin
open my_cur for 'select object_id,object_name from dba_objects where object_id <20';
loop
fetch my_cur
into my_record;
exit when my_cur%notfound;
dbms_output.put_line(my_record.obj_id || chr(9) || my_record.obj_name);
end loop;
end;
相关文章
- 01-16k8s使用glusterfs存储报错type 'features/utime'
- 01-16使用echarts-for-react 绘制折线图 报错:`series.type should be specified `
- 01-16libcurl使用示例
- 01-16上传按钮<input type=“file“ />美化及使用
- 01-16如果使用游标cursor重新转移数据到另外一张表
- 01-16一次使用存储过程游标遇到的坑
- 01-16存储过程游标的使用(6)
- 01-16如果使用游标cursor重新转移数据到另外一张表
- 01-16Django 关于drf_yasg Api文档使用示例
- 01-16【译】高级T-SQL进阶系列 (四)【上篇】:使用游标进行行级别处理