Hi
In my procedure i have a cursor 'attcur' and a record 'attrec'
In the following code i want to know whether the record is first record
LOOP
FETCH attcur into attrec;
EXIT WHEN attcur%NOTFOUND;
-- is first record??
.
.
.
.
I use oracle 10g
Please help