Oracle 数据 使用游标

复制代码 代码如下:

create or replace

procedure proceudre_name as

begin

declare

spara varchar(50);

spara2 varchar(50);

cursor c_cursor is select id,name from temp_table;

begin

open c_cursor;

loop

fetch c_cursor into spara, spara2;

exit when c_cursor%notfound;

begin

–just do what you want.

end;

end loop;

close c_cursor;

end;

end;

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐