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
select * from (select top 6 * from vwTable order by Hours desc) T order by Hours