This is a known question but the best solution I\'ve found is something like:
SELECT TOP N * FROM MyTable ORDER BY Id DESC
I\'ve a table wi
Try using the EXCEPT syntax. Something like this:
EXCEPT
SELECT * FROM clientDetails EXCEPT (SELECT TOP (numbers of rows - how many rows you want) * FROM clientDetails)