if you want only the nth entry, use n-1 in the query
for example, to find the 13th highest entry,
Code:
select MessageID
, No_Views
from Message M
where 12 = (
select count(*)
from Message
where No_Views > M.No_Views )
in english, the query finds the row where there are 12 rows with a higher value, so that must be the row with the 13th highest value