首页 > 代码库 > 【PL/SQL练习】游标cursor :oracle 在执行sql语句时,为sql语句所分配的一个私有的内存区域
【PL/SQL练习】游标cursor :oracle 在执行sql语句时,为sql语句所分配的一个私有的内存区域
隐式游标:一次只能返回一行结果(不需要定义,默认自动建立)
显式游标: 需要开发人员提前定义,可以通过循环的方式处理游标里的sql语句,返回多行结果
隐式游标的属性:
sql%rowcout 统计在游标中处理的记录数
sql%found 如果在游标中能找到符合条件的一条记录,结果为true
sql%notfound 如果在游标中能找不到符合条件的一条记录,结果为true
sql%isopen 判断游标是否打开,在隐式游标中默认游标自动打开
1.隐式游标:
sql%notfound 如果在游标中能找不到符合条件的一条记录,结果为true
SQL> declare
2
3 v_id t1.id%type;
4
5 begin
6
7 v_id :=10;
8
9 update t1 set id=20 where id=v_id;
10 if sql%notfound then
11 insert into t1(id) values (v_id);
12 commit;
13 end if;
14 end;
2. sql%found 如果在游标中能找到符合条件的一条记录,结果为true
SQL> declare
2
3 v_id t1.id%type;
4
5 begin
6
7 v_id :=10;
8
9 delete from t1 where id = v_id;
10
11 if sql%found then
12 dbms_output.put_line(‘T1 recorder is delete !‘);
13 commit;
14 end if;
15 end;
3.sql%rowcout 统计在游标中处理的记录数
SQL> declare
2
3 v_id t1.id%type;
4
5 begin
6
7 v_id :=10;
8
9 insert into t1 (id) values (v_id);
10 delete from t1 where id = v_id;
11
12 if sql%found then
13 dbms_output.put_line(‘T1 recorder is delete !‘);
14 dbms_output.put_line(‘T1 recorders ‘||sql%rowcount||‘ rows was deleted !‘); //统计删除的行数
15 commit;
16 end if;
17 end;
【PL/SQL练习】游标cursor :oracle 在执行sql语句时,为sql语句所分配的一个私有的内存区域
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。