一:(利用NOT IN 和 SELECT TOP 分页)
select top 10 *
from TestTable
where (ID not in
(select top 20 id
order by id))
order by ID
select top 页大小 *
(select top 页大小*页数 id