Hi all,
I have a query that selects all staff. I would like to change it to 3 or 4 separate queries.....one that shows the 1st through the 50th record, the next that selects the 51st through the 100th record, etc.
Is this possible?
Hi LilyMarie,
Not a complete answer for you. Switch your query to SQL view and change it from:
SELECT ...
to:
SELECT TOP 50 ...
This will give you the first 50 records.
- - - -
Beyond that you'll need to select the staff by their IDs or build a sort column in the staff table.
Cheers,
Docendo discimus.
Please consider:
- Thanking those who helped you. Click the reputation icon
in the contributor's post and add Reputation.
- Cleaning up when you're done. Mark your thread [SOLVED] if you received your answer.
Thanks for your reply but i need the programmatic solution.So that i can solve my problem.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks