Oracle入门精读90-Oracle存储过程的for循环读取游标数据

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/msh2016/article/details/86925338

--for循环遍历游标读取数据

create or replace procedure test_for

as

Cursor tempcursor is select userName from temUser01;

name varchar2(20);

begin

   for name in tempcursor LOOP

       begin

            dbms_output.put_line(name.userName);

       end;

   end LOOP;

end ;

--调用

call test_for();

猜你喜欢

转载自blog.csdn.net/msh2016/article/details/86925338