--定义一个游标
declare
cursor c is
select * form emp;
v_emp c%rowtype; --把游标指定的一条结果集保存在v_emp中。
begin
open c; --真正开始打开游标
loop --开始循环
fetch c into v_emp; --把游标指定的这条数据放到v_emp中;
exit when c%NOTFOUND --如果游标找不到数据了
end loop --结束循环
close c --清空内存;
end
--定义一个游标
declare
cursor c is
select * form emp;
v_emp c%rowtype; --把游标指定的一条结果集保存在v_emp中。
begin
open c; --真正开始打开游标
loop --开始循环
fetch c into v_emp; --把游标指定的这条数据放到v_emp中;
exit when c%NOTFOUND --如果游标找不到数据了
end loop --结束循环
close c --清空内存;
end