我滴个乖乖
This commit is contained in:
17
ZelWiki.Repository/Scripts/GetAllPages.sql
Normal file
17
ZelWiki.Repository/Scripts/GetAllPages.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
SELECT
|
||||
P.Id,
|
||||
P.[Name],
|
||||
P.[Description],
|
||||
PR.Body,
|
||||
PR.Revision,
|
||||
P.Navigation,
|
||||
P.CreatedByUserId,
|
||||
P.CreatedDate,
|
||||
P.ModifiedByUserId,
|
||||
P.ModifiedDate
|
||||
FROM
|
||||
[Page] as P
|
||||
INNER JOIN [PageRevision] as PR
|
||||
ON PR.PageId = P.Id
|
||||
WHERE
|
||||
PR.Revision = P.Revision
|
||||
Reference in New Issue
Block a user