select *
from <列名>
between 10 and 20;
select top 20 * from table where id not in (select top 10 id from table)
select top 20 id from table where id not in (select top 10 id from table)
select top 20 id from table where id not in (select top 9 id from table)