递归bom主料件的元件信息

set serveroutput on;
exec dbms_output.enable(buffer_size => null);
declare
  v_cnt  type_file.num5%TYPE;
  v_flag type_file.chr1%TYPE;
  v_bma01 bma_file.bma01%TYPE;
  v_bmb03 bmb_file.bmb03%TYPE;
  type bma_cursor_type is ref cursor;
  type bmb_cursor_type is ref cursor;
  bma_cursor bma_cursor_type;
  bmb_cursor bmb_cursor_type;
begin
  open bma_cursor for select bma01 from bma_file where substr(bma01,1,2)='02' order by 1;
  loop
    fetch bma_cursor into v_bma01;
    exit when bma_cursor%notfound;
    open bmb_cursor for 
      select distinct bmb03 from bmb_file join bma_file on bmb01 = bma01
        where bma10 = '2'
         and  bma05 <= to_date('2012/12/05','yyyy/mm/dd')
         and (bmb05 >= to_date('2012/12/05','yyyy/mm/dd') or bmb05 is null)
         and  bmb14 = '0'
         and  substr(bmb03,1,2)='01'
        connect by prior bmb03 = bmb01
        start with bmb01 = v_bma01 
        order by 1;  
    loop
      fetch bmb_cursor into v_bmb03;
      exit when bmb_cursor%notfound;
      dbms_output.put_line(v_bma01 || '  ' || v_bmb03);
    end loop;
  end loop;                 
end;
/


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值