方法一:
DECLARE 
      k number:=10;
      q number:=10;
      BEGIN
      while(k<90)Loop
               While(q<50)_Loop
      insert into  ty_b_qz011(35010000,k,q);
      q:=q+10;
      End Loop;
        goto v_label;
     k:=k+10;
      End Loop;
<<v_label>>
END;
/
方法二:
DECLARE 
v_eorr exception;
      k number:=10;
      q number:=10;
      BEGIN
      while(k<90)Loop
               While(q<50)_Loop
      insert into  ty_b_qz011(35010000,k,q);
      q:=q+10;
      End Loop;
        v_eorr;
     k:=k+10;
      End Loop;
exception
when v_eorr then
null;         
END;
/