Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请帮助我如何将下面的 sql 查询转换为 MDX
DECLARE @a varchar(10) DECLARE @b varchar(10) Set @a = 'welcome' If @a='welcome' set @b= 'raj'+','+'venkat' print @b
我是 MDX 的新手,所以请帮助并给我更多的想法来学习 MDX。
with member [Measures].[a] as "welcome" member [Measures].[b] as iif([Measures].[a] = "welcome", "raj"+","+ "venkat", null) select [Measures].[b] on 0 from [mycube]