Created
March 25, 2017 20:47
-
-
Save harsha547/03a2f5b47cc1dfaaa6d1cbd5ff741daa to your computer and use it in GitHub Desktop.
MDX Query ( Database : Adventureworks )
This file contains hidden or 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
-- To list all the countries from specified dimenison | |
-- Here we are retrieving all the members of the country | |
SELECT | |
{ } on 0, | |
{ DESCENDANTS([Geography].[Country]) } on 1 | |
FROM [Adventure Works] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solution 👍
