Hi
I am new to MDX. How do we achieve the multiple where in MDX e.g in SQL I can do
select col1, col2 from tbl1
where col1 = 10 or col1 = 20
How do I write a similar query in MDX. I know we can achieve the AND behavior but what about OR.
ALso what about NOT EQUAL TO
e.g in SQL - we can write
select col1, col2 from tbl1
where col1 NOT IN 'ABC'
so I will get rows wherever col1 != 'ABC'
I have to do something similar in MDX. How do I do this.
Any help will be highly appreciated
- PGD
I am new to MDX. How do we achieve the multiple where in MDX e.g in SQL I can do
select col1, col2 from tbl1
where col1 = 10 or col1 = 20
How do I write a similar query in MDX. I know we can achieve the AND behavior but what about OR.
ALso what about NOT EQUAL TO
e.g in SQL - we can write
select col1, col2 from tbl1
where col1 NOT IN 'ABC'
so I will get rows wherever col1 != 'ABC'
I have to do something similar in MDX. How do I do this.
Any help will be highly appreciated
- PGD