亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

sql server實現(xiàn)分頁的方法實例分析

 更新時間:2017年03月13日 11:35:13   作者:繼續(xù)去踢波  
這篇文章主要介紹了sql server實現(xiàn)分頁的方法,結(jié)合實例形式總結(jié)分析了SQL Server實現(xiàn)分頁功能的常用sql語句,具有一定參考借鑒價值,需要的朋友可以參考下

本文實例講述了sql server實現(xiàn)分頁的方法。分享給大家供大家參考,具體如下:

declare @index int,@num int
set @index = 1--當前頁
set @num = 2--單頁包含的行數(shù)
--分頁1
select top (@num) *
from ppohd
where doccode not in
(
  select top (@num * (@index -1)) doccode
  from ppohd
  order by doccode
)
order by doccode
--分頁2
select top (@num) *
from ppohd
where doccode >=
(
  select max(doccode)
  from
  (
    select top (@num * (@index - 1) + 1) doccode
    from ppohd
    order by doccode
  ) as tb
)
--分頁3
select top (@num) *
from
(
  select ppohd.doccode as 'mydoccode',row_number() over (order by doccode) as sno,*
  from ppohd
) as tb
where tb.sno >= @num * (@index - 1) + 1
--分頁4
select *
from
(
  select ppohd.doccode as 'mydoccode', row_number() over(order by doccode) as sno,*
  from ppohd
) as tb
where tb.sno between (@num * (@index - 1) + 1) and (@num * @index)

更多關(guān)于SQL Server相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《SQL Server分頁技術(shù)總結(jié)》、《SQL Server查詢操作技巧大全》、《SQL Server存儲過程技巧大全》、《SQL Server索引操作技巧大全》、《SQL Server常用函數(shù)匯總》及《SQL Server日期與時間操作技巧總結(jié)

希望本文所述對大家SQL Server數(shù)據(jù)庫程序設(shè)計有所幫助。

相關(guān)文章

最新評論