程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 輕松應付百萬數據的數據分頁存儲過程

輕松應付百萬數據的數據分頁存儲過程

編輯:關於SqlServer


CREATE PROCEDURE pageTest --用於翻頁的測試
--需要把排序字段放在第一列

(
@FirstID nvarchar(20)=null, --當前頁面裡的第一條記錄的排序字段的值
@LastID nvarchar(20)=null, --當前頁面裡的最後一條記錄的排序字段的值
@isNext bit=null, --true 1 :下一頁;false 0:上一頁
@allCount int output, --返回總記錄數
@pageSize int output, --返回一頁的記錄數
@CurPage int --頁號(第幾頁)0:第一頁;-1最後一頁。
)

AS

if @CurPage=0
begin
--統計總記錄數
select @allCount=count(ProductId) from Product_test

set @pageSize=10
--返回第一頁的數據
select top 10
ProductId,
ProductName,
Introduction
from Product_test order by ProductId
end

else if @CurPage=-1

select * from
(select top 10 ProductId,
ProductName,
Introduction

from Product_test order by ProductId desc ) as aa
order by ProductId
else

begin
if @isNext=1
--翻到下一頁
select top 10 ProductId,
ProductName,
Introduction
from Product_test where ProductId > @LastID order by ProductId

else
--翻到上一頁
select * from
(select top 10 ProductId,
ProductName,
Introduction
from Product_test where ProductId < @FirstID order by ProductId desc) as bb order by ProductId
end

百萬數據翻頁就像100條數據一樣!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved