码迷,mamicode.com
首页 > 其他好文 > 详细

讨论分页

时间:2016-12-15 11:36:17      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:row   select   des   not   between   desc   表名   from   order   

select top size * from 表名 where(表id not in(select top size*(index-1) 表id from 表名 order by 表id ASC)) order by 表id

 

 

select * from(select ROW_NUMBER() over(order by lid)as t ,* from 表名) as n where t between size and size*(index-1)

 

 

SELECT * FROM 表名 WHERE 表id in ( SELECT top size 表id FROM (SELECT top count-size*(index-1) 表id FROM 表名 order by 表id DESC ) TT ORDER BY TT.表id asc ) ORDER BY 表id asc

讨论分页

标签:row   select   des   not   between   desc   表名   from   order   

原文地址:http://www.cnblogs.com/ZxGs/p/6182302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!