In order to get the top records you must be using the following syntax.....
SELECT TOP n .......
FROM.......
ORDER BY [field]
In order to get the 'last' records simply reverse the ORDER BY clause as follows......
SELECT TOP n .......
FROM.........
ORDER BY [field] DESC