I tried to run a skip on and got error:
"Jet does not support skipping rows."
Could you implement skip functionality usings the method below taken from https://stackoverflow.com/a/10455965/12439476:
If you know how many records you want to skip, then you could do something like this:
SELECT *
FROM myTable x
WHERE x.ID NOT IN (SELECT Top 10 id FROM myTable ORDER BY ....)
ORDER BY ...
Then you could exclude the records that you don't want.
If you then know the total number of records that you want to return, then you could do the following:
SELECT Top 50 *
FROM myTable x
WHERE x.ID NOT IN (SELECT Top 10 id FROM myTable ORDER BY ....)
ORDER BY ...
I tried to run a skip on and got error:
Could you implement skip functionality usings the method below taken from https://stackoverflow.com/a/10455965/12439476:
If you know how many records you want to skip, then you could do something like this:
Then you could exclude the records that you don't want.
If you then know the total number of records that you want to return, then you could do the following: