码迷,mamicode.com
首页 > 数据库 > 详细

sqlserver分页语句

时间:2017-06-02 15:40:50      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:over   row   nbsp   table   sqlserver   ble   ber   分页   tab   

select * from (

select row_number() over(order by id) as rowid,*  from table where 1=1 

) tt

select count(1) as countRow from (

select * from table  where 1=1 

) tt

sqlserver分页语句

标签:over   row   nbsp   table   sqlserver   ble   ber   分页   tab   

原文地址:http://www.cnblogs.com/chang1/p/6933398.html

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