当前位置:首页 > 数据分页的实现

数据分页的实现

取出表A中第31到第40记录

解1:  select top 10 * from A where id not in (select top 30 id from A)

解2:  select top 10 * from A where id > (select max(id) from (select top 30 id from A )as A)