SQLServer 通用分页存储过程(使用游标)


SQL代码
  1. /*  
  2.   Powered By CMSDream Copyright (c) All rights reserved.  
  3.   通用分页存储过程  
  4. */  
  5. CREATE proc [dbo].[cmsdream_SP_MultiPage](  
  6.     @sql varchar(8000)='',  
  7.     @PageSize int=1,  
  8.     @CurrentPage int=1,  
  9.     @RecordCount int=0 output,  
  10.     @PageCount int=1 output  
  11. )AS  
  12. if @PageSize < 1 set @PageSize = 1  
  13. if @CurrentPage < 1 set @CurrentPage = 1  
  14. begin  
  15.     set nocount on  
  16.   
  17.     declare @p1 int,  
  18.     @rowcount int  
  19.     exec...  


16年前9月20日 阅读:345 评论:0