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
This may not be quite the right fit to the question, but…
The OFFSET number clause enables you to skip over a number of rows and then return rows after that.
That doc link is to Postgres; I don't know if this applies to Sybase/MS SQL Server.