我滴个乖乖
This commit is contained in:
32
ZelWiki.Repository/Scripts/GetPageCommentsPaged.sql
Normal file
32
ZelWiki.Repository/Scripts/GetPageCommentsPaged.sql
Normal file
@@ -0,0 +1,32 @@
|
||||
SELECT
|
||||
PC.Id,
|
||||
PC.PageId,
|
||||
PC.CreatedDate,
|
||||
PC.UserId,
|
||||
PC.Body,
|
||||
U.AccountName as UserName,
|
||||
U.AccountName as UserNavigation,
|
||||
P.[Name] as PageName,
|
||||
@PageSize as PaginationPageSize,
|
||||
(
|
||||
SELECT
|
||||
(Round(Count(0) / (@PageSize + 0.0) + 0.999))
|
||||
FROM
|
||||
[Page] as iP
|
||||
INNER JOIN PageComment as iPC
|
||||
ON iPC.PageId = iP.Id
|
||||
WHERE
|
||||
iP.Navigation = @Navigation
|
||||
) as PaginationPageCount
|
||||
FROM
|
||||
[Page] as P
|
||||
INNER JOIN PageComment as PC
|
||||
ON PC.PageId = P.Id
|
||||
LEFT OUTER JOIN users_db.Profile as U
|
||||
ON U.UserId = PC.UserId
|
||||
WHERE
|
||||
P.Navigation = @Navigation
|
||||
ORDER BY
|
||||
PC.CreatedDate DESC
|
||||
LIMIT @PageSize
|
||||
OFFSET (@PageNumber - 1) * @PageSize
|
||||
Reference in New Issue
Block a user