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]