Hi guys,
Is there a way to build query to find for example last 5 records from table??
Thanks
Hi guys,
Is there a way to build query to find for example last 5 records from table??
Thanks
SELECT TOP 5 YourTable.*
FROM YourTable
ORDER BY YourTable.ID DESC;
..if you have an id in your table!~)
Thanks a lot. It works.
Solved.