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 not recognize INTERSECT.
Thanks!
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 not recognize INTERSECT.
Thanks!