oracle游标怎么使用?创建完了 怎么用?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle游标怎么使用?创建完了 怎么用?相关的知识,希望对你有一定的参考价值。
参考技术A 在定义参数游标之后,当使用不同参数值多次打开游标时,可以产生不同的结果集,语法如下:cursor
cursor_name(parameter_name
datatype)
is
select_statement;
定义参数游标时,游标参数只能指定数据类型,而不能指定长度。
示例如下:
declare
cursor
temp_cursor(no
number)
is
select
name
from
cip_temps
where
id=no;
v_name
cip_temps.name%type;
begin
open
temp_cursor(1);
loop
以上是关于oracle游标怎么使用?创建完了 怎么用?的主要内容,如果未能解决你的问题,请参考以下文章