sql 使用MDX检索数据(Cube:AdventureWorks)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 使用MDX检索数据(Cube:AdventureWorks)相关的知识,希望对你有一定的参考价值。

-- Code Snippet of the Day [ March 25th , 2017 }

-- Use Children with the dimension to exclude All Geographies 

-- Following MDX query is used to retrieve data for the all geographies with measures of Internet sales orders and Total orders

SELECT
	NON EMPTY { [Measures].[Internet Order Count],
				[Measures].[Order Count]
				} ON COLUMNS,

	[Geography].[Country].Children  ON ROWS

FROM [Adventure Works]

以上是关于sql 使用MDX检索数据(Cube:AdventureWorks)的主要内容,如果未能解决你的问题,请参考以下文章

MDX跨cube查询——lookupcube

如何开始使用 MDX

用 MDX 查询的日期范围子句中的现有成员替换不存在的成员

查询 (2, 2) 默认情况下,需要一个年份级别。在 MDX 查询不起作用的 cube.ytd 函数中没有找到这样的级别

如何使用 MDX 获得类似 T-SQL 的单轴叶级结果

如何使用 MDX 查询检索内部节点的数据集?