sqlserver分页查询
select * from ACT_RU_TASK order by CREATE_TIME_ desc
select top 5 * from ACT_RU_TASK
where ID_ not in(select top 10 ID_ from ACT_RU_TASK order by CREATE_TIME_ desc)
order by CREATE_TIME_ desc
select * from ACT_RU_TASK order by CREATE_TIME_ desc
select top 5 * from ACT_RU_TASK
where ID_ not in(select top 10 ID_ from ACT_RU_TASK order by CREATE_TIME_ desc)
order by CREATE_TIME_ desc