SQL分页语句

select top 10 a from tableA where id not in(select top 2*10 id from tableA where a>1 order by id) and a>1 order by id
原文地址:https://www.cnblogs.com/yhb199/p/1234143.html