MDX 查询原型
发布日期:2025-04-13 13:01:19 浏览次数:11 分类:精选文章

本文共 1689 字,大约阅读时间需要 5 分钟。

记录 SBS 中 MDX 查询原型,供实际项目参考。

  • 查询 2004 年 1 月 2 日 - 2004 年 3 月 1 日之间购买过 Bikes 产品的用户。
  • SELECT ([Product].[Category].[Bikes],[Measures].[Internet Sales Amount]) ON COLUMNS,
    NON EMPTY [Customer].[Customer].[Customer].MEMBERS ON ROWS
    FROM [Step-by-Step]
    WHERE ([Date].[Calendar].[Date].&[20040102]:[Date].[Calendar].[Date].&[20040301])
    1. 查询 2004 年 1 月 2 日 - 2004 年 3 月 1 日之间购买过 Bikes 或 Clothing 产品的用户。
    2. SELECT ({([Product].[Category].[Bikes],[Measures].[Internet Sales Amount]),
      ([Product].[Category].[Clothing],[Measures].[Internet Sales Amount])} ON COLUMNS,
      NON EMPTY [Customer].[Customer].[Customer].MEMBERS ON ROWS
      FROM (
      SELECT ([Date].[Calendar].[Date].&[20040102]:[Date].[Calendar].[Date].&[20040301]) ON COLUMNS
      FROM [Step-by-Step]
      )
      1. 计算 2004 年 3 月 1 日 - 3 月 4 日之前 60 天购买了 Bikes 或 Clothing 产品的用户数量。
      2. WITH MEMBER [Measures].[CustomerCounts] AS
        COUNT(NONEMPTY ({[Customer].[Customer].[Customer].MEMBERS},
        {([Product].[Category].[Bikes],[Measures].[Internet Sales Amount])}
        * LASTPERIODS(60,[Date].[Calendar].CurrentMember))
        +
        NONEMPTY ({[Customer].[Customer].[Customer].MEMBERS},
        {([Product].[Category].[Clothing],[Measures].[Internet Sales Amount])}
        * LASTPERIODS(60,[Date].[Calendar].CurrentMember))
        )
        1. 计算每个月第一天到前 60 天购买了 Bikes 或 Clothing 产品的用户数量。
        2. WITH MEMBER [Measures].[CustomerCounts] AS
          COUNT(NONEMPTY ({[Customer].[Customer].[Customer].MEMBERS},
          {([Product].[Category].[Bikes],[Measures].[Internet Sales Amount])}
          * LASTPERIODS(60,[Date].[Calendar].CurrentMember.FIRSTCHILD))
          +
          NONEMPTY ({[Customer].[Customer].[Customer].MEMBERS},
          {([Product].[Category].[Clothing],[Measures].[Internet Sales Amount])}
          * LASTPERIODS(60,[Date].[Calendar].CurrentMember.FIRSTCHILD))
          )

          更多 BI 文章请参看相关链接。

    上一篇:Mean-Shift聚类方法
    下一篇:MDX Cookbook 12 - 计算 SMA 简单移动平均 LastPeriods() 函数的使用

    发表评论

    最新留言

    第一次来,支持一个
    [***.219.124.196]2025年04月29日 07时13分49秒