使用存储过程创建分页
在實際的開發過程中,經常遇到存儲過程分頁,下面根據實際情況總結的幾種方法:
數據庫名稱:myTest
1、思路:利用select top and select not in 排除例外情況的分頁
use myTest
go
create procedure proc_paged_with_notin?
?(
???? @pageIndex int,? --頁索引
???? @pageSize int??? --每頁記錄數
?)
as
begin
??? set nocount on; --沒有返回值
??? declare @sql nvarchar(500)
??? set @sql='select top '+str(@pageSize)+' * from tb_TestTable where(ID not in(select top '+str(@pageSize*@pageIndex)+' id from tb_TestTable order by ID ASC)) order by ID'
??? execute(@sql)? --因select top后不支持直接接參數,所以寫成了字符串@sql
??? set nocount off;
end
exec proc_paged_with_notin 10,5
2、思路:利用select top and select max(列)分頁
use myTest
go
create procedure proc_paged_with_selectMax?
?(
???? @pageIndex int,? --頁索引
???? @pageSize int??? --每頁記錄數
?)
?as
?begin
?set nocount on;
??? declare @sql nvarchar(500)?
????if @pageIndex=0
??????????? set @sql='select top '+str(@pageSize)+' * from?tb_TestTable?order by ID'
??? else
????????????set @sql='select top '+str(@pageSize)+' * From?tb_TestTable where(ID>(select max(id) From (select top '+str(@pageSize*@pageIndex)+' id? From ?tb_TestTable?order by ID)?as TempTable)) order by ID'
execute(@sql)
set nocount off;
end
exec proc_paged_with_selectMax 10,5
3、思路:利用Row_number()給數據行加上索引
create procedure proc_paged_with_Rownumber? --利用SQL 2005中的Row_number()
?(
???? @pageIndex int,
???? @pageSize int
?)
as
?begin
?set nocount on;
??? select * from (select *,Row_number() over(order by ID asc) as IDRank from tb_testTable) as IDWithRowNumber where IDRank>@pageSize*@pageIndex and IDRank<@pageSize*(@pageIndex+1)
set nocount off;
end
exec proc_paged_with_Rownumber 10,5
三種方法的測試結果顯示:select max >row_number>not in(分頁速度)
轉載于:https://www.cnblogs.com/jsping/archive/2012/08/19/2646237.html
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的使用存储过程创建分页的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: BASH启动脚本及其启动顺序
- 下一篇: UML建模之业务处理模型(Busines