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