If you mean the most recently entered records, then the
table will have to have a field (date entered?) that can be
used to determine the order that the records entered. With
such a field, you might be able to use a query like:
SELECT TOP 5 table.*
FROM table
ORDER BY dateenteredfield DESC
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.