代码如下:
ALTER PROCEDURE [a][dnt_getappinvitelist]
@uid int
@pageindex int
@pagesize int
AS
DECLARE @startRow int
@endRow int
SET @startRow = (@pageIndex ) * @pagesize
IF @pageindex =
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