Oracle批量fetch的小技巧。

 在一般的情况下,使用批量fetch的几率并不是很多,但是Oracle提供了这个功能我们最好能熟悉一下,说不定什么时候会用上它。

 

以下是代码片段:
 declare
  cursor c1 is select * from t_depart;
  v_depart t_depart%rowtype ;
  type v_code_type is table of t_depart.depart_code%type ;
  v_code v_code_type ;
  type v_name_type is table of t_depart.depart_name%type ;
  v_name v_name_type ;
  begin
  open c1;
  fetch c1 bulk collect into v_code , v_name ;
  for i in 1..v_code.count loop
  dbms_output.put_line(v_code(i)||||v_name(i));
  end loop;
  close c1;
  end;

 

  通过上面的这个例子,大家可以发现如果列很多的话,为每一列定义一个集合似乎有些繁琐,可以把集合和%rowtype结合起来一起使用来简化程序!

 

    declare
  cursor c1 is select * from t_depart;
  type v_depart_type is table of t_depart%rowtype ;
  v_depart v_depart_type ;
  begin
  open c1;
  fetch c1 bulk collect into v_depart ;
  for i in 1..v_depart.count loop
  dbms_output.put_line(v_depart(i).depart_code||||
  v_depart(i).depart_name);
  end loop;
  close c1;
  end;

 

  在输出结果时,既可以使用集合的count属性和可以使用first和last,在引用%rowtype类型的内容时,还有一个需要注意的地方是v_depart(i).depart_code,而不是v_depart.depart_code(i),当然没有这样的写法,即使有意义也并不一样。

  

   declare
  cursor c1 is select * from t_depart;
  type v_depart_type is table of t_depart%rowtype ;
  v_depart v_depart_type ;
  begin
  open c1;
  fetch c1 bulk collect into v_depart ;
  for i in v_depart.first..v_depart.last loop
  dbms_output.put_line(v_depart(i).depart_code||||
  v_depart(i).depart_name);
  end loop;
  close c1;
  end;

转载于:https://www.cnblogs.com/onlyzq/archive/2010/09/10/1823053.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值