plsql游标使用学习

--设置服务器端输出plsql执行结果
set serveroutput on;
--声明一个显式游标:声明游标,打开游标,读取游标,关闭游标
declare--声明部分
cursor myfirstcursor is select * from emp;
myrowtype emp%rowtype;--声明一个查询出来的行的类型
begin
  open myfirstcursor;
  fetch myfirstcursor into myrowtype;--把游标指向的结果集数据装载到自定义的行类型中
  while myfirstcursor%found loop--执行while循环
  dbms_output.put_line('编码为:'||myrowtype.empno||'名字为:'||myrowtype.ename||'查找到的数量是:'||myfirstcursor%rowcount);
  fetch myfirstcursor into myrowtype;--将结果集数据输出到服务器段
  end loop;
   dbms_output.put_line('编码为:'||myrowtype.empno||'名字为:'||myrowtype.ename||'查找到的数量是:'||myfirstcursor%rowcount);
  close myfirstcursor;
  end;
--隐式游标:主要用于处理数据操纵语言的执行结果,当使用隐式游标属性时需要在隐式游标属性前加入sql%rowcount;
begin
  update emp set sal=sal*1.2 where job like '%SALE%';
  if sql%notfound then
    dbms_output.put_line('没有影响任何人的数据');
  else
    dbms_output.put_line('涨工资的员工人数有:'||sql%rowcount);
  end if;
end;

使用for语句循环游标:

在使用for语句循环游标时会自动将for的计数器转换成record类型

格式如下:

begin

for recordype in(select * from emp where sal>1000)

loop

dbms_output.put_line(recordtype.ename);

end loop;

异常处理:--异常处理
declare
vname Varchar2(10);
vsal Number(10,2);
begin
  select ename,sal into vname,vsal from emp where deptno=10;
  if sql%found then
    dbms_output.put_line('哈哈,我找到了数据');
    end if;
exception
  when too_many_rows then
    dbms_output.put_line('查询出来太多数据,不正确,请您重新修改!');
  when no_data_found then
    dbms_output.put_line('咳咳,没有查询出数据,真是愁人啊~~~');
end;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值