隐性游标
在进行数据的操作的过程中,去判断和查询整个数据操作的范围(DML操作)。
sql%found:游标找到了数据
sql%notfound:游标没有找到数据
sql%rowcount:操作数据的行数
declare
begin
delete from emp where empno=7788;
if sql%found then
dbms_output.put_line('删除了用户');
else
dbms_output.put_line('没有删除内容');
end if;
commit;
end;
declare
begin
update emp set sal=sal+100 where deptno=10;
dbms_output.put_line('更新了'||sql%rowcount||'行');
commit;
end;