Created
September 19, 2014 07:02
-
-
Save pierresetteskog/183cb18f1d43eca48817 to your computer and use it in GitHub Desktop.
enova cms pagetype
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 EnovaAction.Guid, EnovaController.Guid AS Expr1, EnovaViewData.Guid AS Expr2, EnovaController.SiteID, EnovaCmsSiteGroup.Name_lang1, EnovaViewData.ID AS viewdataid, EnovaAction.ID AS actionid, | |
EnovaController.ID AS controllerid, EnovaView.ID AS viewid | |
FROM EnovaViewData INNER JOIN | |
EnovaView ON EnovaViewData.ID = EnovaView.ViewDataID INNER JOIN | |
EnovaAction INNER JOIN | |
EnovaController ON EnovaAction.ControllerID = EnovaController.ID INNER JOIN | |
EnovaCmsSiteGroup ON EnovaController.SiteID = EnovaCmsSiteGroup.ID ON EnovaViewData.ID = EnovaAction.ViewDataID | |
WHERE (EnovaViewData.Deleted = 0) AND (EnovaAction.Deleted = 0) AND (EnovaController.Deleted = 0) AND (EnovaCmsSiteGroup.Deleted = 0) AND (EnovaView.Deleted = 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment