hi
i was created table and table had 10 ten records i want fetch 7th record only how please any help me .
hi
i was created table and table had 10 ten records i want fetch 7th record only how please any help me .
What did you try and what problem are you facing?
Do you know how to use GET,SETRANGE,SETFILTER,FINDFIRST,FINDSET?
In a real world scenario you would never get the 7th record. What would happen is someone changes the sorting order? What would happen is someone inserts a record in the 4th position? Instead, you would figure out what values to filter on.
To jump 7 records you would do NEXT(7). You’ll need to figure that out though, because if you do FINDSET you are on the 1st and to get to the 7th you’d have to jump 6 more, so you’d do NEXT(6)