--设置服务器端输出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;