1.分页过程
SELECT top 2 * from Contact
where id>
(select max(id) from ( select top 8 id from contact order by id asc))
order by id asc
1.分页过程
SELECT top 2 * from Contact
where id>
(select max(id) from ( select top 8 id from contact order by id asc))
order by id asc
转载于:https://www.cnblogs.com/jianshao810/archive/2010/10/30/1864868.html