----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
How many total records does your table have? If you need to see all of them but filter them, you could just export the results to a spreadsheet and filter there. Of course, that only works if your resultset is smaller than 65,536 records since that's Excel's limit. I'm trying to understand why you only want to see 20 records at one time
The First number indicates In what row of the results you want to start. the second is how many rows you want to return starting from the first number, so:
0,10 would return the first ten rows, 0-9
5,5 would return five rows starting from row number 5, which would be rows 6,7,8,9,10
20,20 would return twenty records starting from row 20. Returning rows 21.22.23.24....30.
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.