Created
October 15, 2021 07:08
-
-
Save olsgreen/873304ce44f1d9c9633f61d666ae0f82 to your computer and use it in GitHub Desktop.
Orphan Page Query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT Orphans.cID FROM Pages AS Orphans LEFT JOIN Pages AS Parents ON Orphans.cParentID = Parents.cID WHERE Parents.cID IS NULL AND Orphans.cID <> 1 AND Orphans.cIsSystemPage = 0 AND Orphans.cParentID <> 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment