oracle 存储过程遍历
Posted hyhfirst12138
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 存储过程遍历相关的知识,希望对你有一定的参考价值。
declare
begin
for i in (select * from person t where rownum<10) loop
dbms_output.put_line(i.psn_code||‘******‘||i.zh_name);
end loop;
end;
declare
type v_cur is ref cursor;
v_psn v_cur;
v_psn_code number;
begin
open v_psn for select t.psn_code from person t where rownum<10;
loop
fetch v_psn into v_psn_code ;
exit when v_psn%notfound;
dbms_output.put_line(v_psn_code);
end loop;
close v_psn;
end;
type v_cur is ref cursor;
v_psn v_cur;
v_psn_code number;
begin
open v_psn for select t.psn_code from person t where rownum<10;
loop
fetch v_psn into v_psn_code ;
exit when v_psn%notfound;
dbms_output.put_line(v_psn_code);
end loop;
close v_psn;
end;
以上是关于oracle 存储过程遍历的主要内容,如果未能解决你的问题,请参考以下文章