游标的使用

--创建包,并且定义类型test_cursor为游标
create or replace package testpackage
       as type test_cursor is ref cursor;
end testpackage;

--创建过程,获取数据
create or replace procedure afei_pro_emp(
       spNo in number,
       spcursor out testpackage.test_cursor) is
begin
       open spcursor for
            select * from emp where deptno = spNo;
end afei_pro_emp;

select * from emp;



declare
--定义一个游标
type afei_cur_test1 is ref cursor;
--定义一个游标变量
test_cur afei_cur_test1;
--定义变量
v_name emp.empname%type;
v_sal emp.wage%type;
begin
--执行部分
--把test_cur和一个select结合起来
open test_cur for select empname, wage from emp where postcode = &no;
--循环取出
loop
     fetch test_cur into v_name, v_sal;
     --判断是否test_cur为空
     exit when test_cur % notfound;
     dbms_output.put_line('姓名:' || v_name || ' 工资:' || v_sal);
end loop;
end;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值