SQLServer存儲過程實現(xiàn)單條件分頁
話不多說,請看代碼:
SQLServer Procedure Pagination_basic: ALTER PROCEDURE [qiancheng].[Pagination_basic] ( @Table_name VARCHAR (255), --name of table @Rows_target VARCHAR (1000) = '*', --search rows @Rows_condition VARCHAR (1000) = '', --the condition to find target (no where) @Rows_order VARCHAR (255) = '', --the rows to rank @Order_type INT = 0, -- *Q*C* 0 normal 1 down @PageSizes INT = 10, --the size of each page @PageIndex INT = 1, --current page @ShowPages INT, --whether show the pages *Q*C* 1-yes 0-no @ShowRecords INT, --whether show the record *Q*C* 1-yes 0-no @Records_total INT OUTPUT, --returned total records @Pages_total INT OUTPUT --returned total pages ) AS DECLARE @MainSQL_QC nvarchar (2000) --Main SQL sentence DECLARE @Var_QC VARCHAR (100) --Temporary variate DECLARE @Order_QC VARCHAR (400) --the sort to rank SET @Records_total = 0 SET @Pages_total = 0 IF @ShowRecords = 1 OR @ShowPages = 1 BEGIN IF @Rows_condition != '' SET @MainSQL_QC = 'select @Records_total = count(1) from [' + @Table_name + '] where ' +@Rows_condition ELSE SET @MainSQL_QC = 'select @Records_total = count(1) from [' + @Table_name + ']' EXEC sp_executesql @MainSQL_QC, N'@Records_total int out' ,@Records_total OUTPUT END IF @ShowPages = 1 BEGIN IF @Records_total <= @PageSizes SET @Pages_total = 1 ELSE BEGIN SET @Pages_total = @Records_total /@PageSizes IF (@Records_total %@PageSizes) > 0 SET @Pages_total = @Pages_total + 1 END END IF @Order_type = 1 BEGIN SET @Var_QC = '<(select min' SET @Order_QC = ' order by [' + @Rows_order + '] desc' END ELSE BEGIN SET @Var_QC = '>(select max' SET @Order_QC = ' order by [' + @Rows_order + '] asc' END IF @PageIndex = 1 BEGIN IF @Rows_condition != '' SET @MainSQL_QC = 'select top ' + str(@PageSizes) + ' ' +@Rows_target + ' from [' + @Table_name + '] where ' + @Rows_condition + ' ' + @Order_QC ELSE SET @MainSQL_QC = 'select top ' + str(@PageSizes) + ' ' +@Rows_target + ' from [' + @Table_name + '] ' + @Order_QC END ELSE BEGIN IF @Rows_condition != '' SET @MainSQL_QC = 'select top ' + str(@PageSizes) + ' ' +@Rows_target + ' from [' + @Table_name + '] where [' + @Rows_order + ']' + @Var_QC + '([' + @Rows_order + ']) from (select top ' + str((@PageIndex - 1) *@PageSizes) + ' [' + @Rows_order + '] from [' + @Table_name + '] where ' + @Rows_condition + ' ' + @Order_QC + ') as Tmep_QC) and ' + @Rows_condition + ' ' + @Order_QC ELSE SET @MainSQL_QC = 'select top ' + str(@PageSizes) + ' ' +@Rows_target + ' from [' + @Table_name + '] where [' + @Rows_order + ']' + @Var_QC + '([' + @Rows_order + ']) from (select top ' + str((@PageIndex - 1) *@PageSizes) + ' [' + @Rows_order + '] from [' + @Table_name + ']' + @Order_QC + ') as Tmep_QC)' + @Order_QC END EXEC (@MainSQL_QC)
調(diào)用:execute pagination_basic 'UserDetail','*','','id','1','5','1','1','1','',''
主要是末尾的語句,拆分下來便是這樣:
select top 每頁數(shù) 列名 from [表名] where [排序字段名] < --1 倒序輸出若列 小于之前頁數(shù)的最小值
(select min ( [排序字段名] )from --2 獲得一個指定列名中的最小值并輸出
(select top (當前頁-1)*每頁數(shù) [排序字段名] from [表名] where [條件] [排序類型]) --3 選擇之前頁數(shù)總數(shù)據(jù)倒序輸出
as Tmep_QC)--4 建立一個名為Tmep_QC的臨時表--2 獲得一個指定列名中的最小值并輸出
and [條件] [排序類型]--1 倒序輸出若列 小于之前頁數(shù)的最小值
以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持腳本之家!
相關文章
SQLSERVER中union,cube,rollup,cumpute運算符使用說明
union,cube,rollup,cumpute運算符的使用技巧。2009-09-09如何監(jiān)測和優(yōu)化OLAP數(shù)據(jù)庫
微軟SQL Server分析服務(SSAS)提供了一個用來創(chuàng)建和管理數(shù)據(jù)挖掘應用和在線分析處理系統(tǒng)的強大引擎,你應該仔細的監(jiān)測和優(yōu)化OLAP數(shù)據(jù)庫和潛在的關系數(shù)據(jù)源。2015-09-09SQL Server 數(shù)據(jù)庫分離與附加(圖文教程)
SQL Server 數(shù)據(jù)庫分離與附加(圖文教程),需要的朋友可以參考一下2013-05-05SQL Server兩表數(shù)據(jù)同步的多種方法詳解
這篇文章主要介紹了SQL Server兩表數(shù)據(jù)同步的多種方法,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2023-06-06