資源描述:
《兩個(gè)分頁(yè)存儲(chǔ)過(guò)程的效率比較》由會(huì)員上傳分享,免費(fèi)在線(xiàn)閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、兩個(gè)分頁(yè)存儲(chǔ)過(guò)程的效率比較兩個(gè)分頁(yè)存儲(chǔ)過(guò)程的效率比較(均為多表查詢(xún))--解密存儲(chǔ)過(guò)程execsp_decrypt'p_page'useNewt8c8goifexists(select*fromdbo.sysobjectswherename='p_page')dropprocedurep_pagego/**分頁(yè)的存儲(chǔ)過(guò)程*/createprocedurep_page(@Tablesvarchar(1000),--表名,可以是多個(gè)表,但不能用別名@PrimaryKeyvarchar(100),--主鍵,可以為空,但@Order為空時(shí)該值不能
2、為空@Fieldsvarchar(1000)='*',--查詢(xún)字段(多個(gè)表的字段),為空表示select*@PageSizeint=15,--每頁(yè)記錄數(shù)@CurrentPageint=1,--當(dāng)前頁(yè),表示第頁(yè)@Filtervarchar(1000)=null,--條件,可以為空,不用填where@Groupvarchar(1000)=null,--分組依據(jù),可以為空,不用填groupby@Sortvarchar(200)=null,--排序,默認(rèn)按主鍵升序排列,不用填orderby@TotalPageintoutput--總頁(yè)數(shù))wit
3、hencryption--加密assetnocountondeclare@intResultintbegintrandeclare@sqlnvarchar(4000)if@Filterisnullor@Filter=''set@Sql='select@intResult=count('+@PrimaryKey+')from'+@Tableselseset@Sql='select@intResult=count('+@PrimaryKey+')from'+@Tables+'where+'+@Filterexecsp_executesql@
4、sql,N'@intResultintoutput',@intResultoutputselect@TotalPage=ceiling((@intResult+0.0)/@PageSize)if@Sortisnullor@Sort=''set@Sort=@PrimaryKeydeclare@SortTablevarchar(100)declare@SortNamevarchar(100)declare@strSortColumnvarchar(200)declare@operatorchar(2)declare@typevarchar(
5、100)declare@precintifcharindex('desc',@Sort)>0beginset@strSortColumn=replace(@Sort,'desc','')set@operator='<='endelseifcharindex('asc',@Sort)>0beginset@strSortColumn=replace(@Sort,'asc','')set@operator='>='endelsebeginset@strSortColumn=@SORTset@operator='>='endifcharinde
6、x('.',@strSortColumn)>0beginset@SortTable=substring(@strSortColumn,0,charindex('.',@strSortColumn))set@SortName=substring(@strSortColumn,charindex('.',@strSortColumn)+1,len(@strSortColumn))endelsebeginset@SortTable=@Tablesset@SortName=@strSortColumnendselect@type=t.name,
7、@prec=c.precfromsysobjectsojoinsyscolumnscono.id=c.idjoinsystypestonc.xusertype=t.xusertypewhereo.name=@SortTableandc.name=@SortNameifcharindex('char',@type)>0set@type=@type+'('+cast(@precasvarchar)+')'declare@strPageSizevarchar(50)declare@strStartRowvarchar(50)declare@s
8、trFiltervarchar(1000)declare@strSimpleFiltervarchar(1000)declare@strGroupvarchar(1000)if@CurrentPage<1s