Thread: Fetch

Fetch

From
Bob Pawley
Date:
When I fetch a row it returns a row number.
 
Is there a method under the fetch command of either not returning the row number or of ignoring it after it is returned.
 
  begin work;
      Declare loop_set  Cursor
       for Select  one, two from loop_import
       order by loop_id ;
     fetch next From loop_set;
 
Bob Pawley