程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> MSSQL根據ID進行分頁實現方法

MSSQL根據ID進行分頁實現方法

編輯:關於SqlServer

    代碼如下:

    ALTER PROCEDURE [a0919194122].[dnt_getappinvitelist]
    @uid int,
    @pageindex int,
    @pagesize int
    AS
    DECLARE @startRow int,
    @endRow int
    SET @startRow = (@pageIndex - 1) * @pagesize
    IF @pageindex = 1
    BEGIN
    EXEC(
    'SELECT TOP '+@pagesize+' [id],[typename],[appid],[type],[fromuid],[touid],[myml],[datetime],[hash] FROM [dnt_myinvite] WHERE [touid]='+@uid+' ORDER BY [id] DESC'
    )
    END
    ELSE
    BEGIN
    EXEC('
    SELECT
    TOP '+@pagesize+'
    [id],[typename],[appid],[type],[fromuid],[touid],[myml],[datetime],[hash]
    FROM [dnt_myinvite]
    WHERE [touid]='+@uid+'
    AND [id] < (SELECT MIN([id]) FROM (SELECT TOP '+@startRow+' [id]
    FROM [dnt_myinvite]
    WHERE [touid]='+@uid+'
    ORDER BY [id] DESC
    ) AS T
    )
    ORDER BY [id] DESC
    ')
    END

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved