Hi
Could someone tell me how I can select records e.g. 501-1000 in a table using SQL? I've tried using something like (the table Data has 3000 records):
(SELECT TOP 1000 * FROM Data ORDER BY ID ASC)
INTERSECT
(SELECT TOP 2500 * FROM Data ORDER BY ID DESC)
but apparently MS Access 2000 does...
Hi
I currently have a database which contains 3000 records. What I want to do is, I want to extract only 2500 records out of this 3000. I know I can select the top 2500 with SQL SELECT TOP statement, but is there a way for me to select, let's say records 1-500 and 1001-3000?
Thanks!
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.