I can use TOP, but that only works from the top. I need to paginate the data, say 25 records at a time. How do I do that in Access?
SELECT TOP 25 usc_Detail.* FROM usc_Detail,
but how would I fetch just records 26-50?
In SQL Server I can use LIMIT 26, 25
-Pete
Games the old fashion way with Dice, Paper and Pencils!
SELECT TOP 25 usc_Detail.* FROM usc_Detail,
but how would I fetch just records 26-50?
In SQL Server I can use LIMIT 26, 25
-Pete
Games the old fashion way with Dice, Paper and Pencils!