codice:
select top 11 *
from ( 
  select top 20 *
  from   tabella
  order by id asc
) as tab 
order by id desc
edit. Oppure anche così:

codice:
select top 11 * from tabella where id not in (select top 9 id from tabella order by id)