共計 3023 個字符,預計需要花費 8 分鐘才能閱讀完成。
SQLServer 中怎么利用存儲過程實現單條件分頁,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
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) ASDECLARE @MainSQL_QC nvarchar (2000) --Main SQL sentenceDECLARE @Var_QC VARCHAR (100) --Temporary variateDECLARE @Order_QC VARCHAR (400) --the sort to rankSET @Records_total = 0SET @Pages_total = 0IF @ShowRecords = 1OR @ShowPages = 1BEGINIF @Rows_condition != SET @MainSQL_QC = select @Records_total = count(1) from [ + @Table_name + ] where +@Rows_conditionELSESET @MainSQL_QC = select @Records_total = count(1) from [ + @Table_name + ] EXEC sp_executesql @MainSQL_QC, N @Records_total int out ,@Records_total OUTPUTENDIF @ShowPages = 1BEGINIF @Records_total = @PageSizesSET @Pages_total = 1ELSEBEGINSET @Pages_total = @Records_total /@PageSizesIF (@Records_total %@PageSizes) 0SET @Pages_total = @Pages_total + 1ENDENDIF @Order_type = 1BEGINSET @Var_QC = (select min SET @Order_QC = order by [ + @Rows_order + ] desc ENDELSEBEGINSET @Var_QC = (select max SET @Order_QC = order by [ + @Rows_order + ] asc ENDIF @PageIndex = 1BEGINIF @Rows_condition != SET @MainSQL_QC = select top + str(@PageSizes) + +@Rows_target + from [ + @Table_name + ] where + @Rows_condition + + @Order_QCELSESET @MainSQL_QC = select top + str(@PageSizes) + +@Rows_target + from [ + @Table_name + ] + @Order_QCENDELSEBEGINIF @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_QCELSESET @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_QCEND EXEC (@MainSQL_QC)
調用:execute pagination_basic UserDetail , * , , id , 1 , 5 , 1 , 1 , 1 , ,
主要是末尾的語句,拆分下來便是這樣:
select top 每頁數 列名 from [表名] where [排序字段名] –1 倒序輸出若列 小于之前頁數的最小值
(select min ( [ 排序字段名] )from –2 獲得一個指定列名中的最小值并輸出
(select top ( 當前頁 -1)* 每頁數 [排序字段名] from [表名] where [條件] [排序類型]) –3 選擇之前頁數總數據倒序輸出
as Tmep_QC)–4 建立一個名為 Tmep_QC 的臨時表 –2 獲得一個指定列名中的最小值并輸出
and [條件] [排序類型]–1 倒序輸出若列 小于之前頁數的最小值
關于 SQLServer 中怎么利用存儲過程實現單條件分頁問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注丸趣 TV 行業資訊頻道了解更多相關知識。
正文完