select top 10 * from demo where id not in (select top 300 id from demo order by id) order by id
原理是,在子查询里找到前300条,在父查询中再取这300条之外的前十条,就是301-310条