--游标的使用 步骤1、声明游标 2、打开游标 3、获取数据 4、关闭游标 declare cursor cur is select * from emp; t_sal cur%rowtype; begin open cur; loop fetch cur into t_sal; exit when cur%notfound; dbms_output.put_line(t_sal.ename || ‘:‘ || t_sal.sal); end loop; close cur; end;
Posted 土豆Z120553
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle游标的使用相关的知识,希望对你有一定的参考价值。
--游标的使用 步骤1、声明游标 2、打开游标 3、获取数据 4、关闭游标 declare cursor cur is select * from emp; t_sal cur%rowtype; begin open cur; loop fetch cur into t_sal; exit when cur%notfound; dbms_output.put_line(t_sal.ename || ‘:‘ || t_sal.sal); end loop; close cur; end;
以上是关于oracle游标的使用的主要内容,如果未能解决你的问题,请参考以下文章