while c_wb%FOUND 
                                loop
                                  if Length(V_Agent)<1 or Is_date(V_Date)=1 then
                                      begin
                                        fetch c_wb into V_Agent, V_Date;
                                        continue;
                                      end;
                                  end if;
                                  if V_Agent != V_Agent_old or Floor(V_Date / 100) != Floor(V_Date_old / 100) then
                                      begin
                                        V_Agent_old := V_Agent; V_Date_old := V_Date;
                                      end;
                                  end if;
                                end loop;该代码可以编译通过,但网上说oracle游标中不存在continue用法
怎么修改?谢谢