简体   繁体   English

度量的MDX查询列名称

[英]MDX Query Column name for Measures

have following query 有以下查询

select  
    non empty  
    (      
    [Dimension1].[Description].children,  
    [Dimension1].[GCode].members,  
    [Measures].[GScore Sum]   
    )  
    on columns,  
    non empty
    (
    [Dimension2].[DCode].[DCode] *  
    [Dimension2].[DName].[DName] *   
    [Dimension2.[Barcode].[Barcode] *  
    [Dimension2].[LN].[LName] *  
    [Dimension2].[FN].[FName]   

)
on rows
from 
[MCube]
where 
(

{[Dimension2].[HARC].[DCode].&[0000]}

)  

In the results [GSCORE SUM] column name repeats is eachtheir way to avoid the repeation of column name or give the unique name for EACH GLCE Code member instead of just repetting [GSCore Sum] in results or make the [Gscore Sum] invisible 在结果中,[GSCORE SUM]列名重复是避免重复列名或为每个GLCE代码成员指定唯一名称的每种方式,而不是仅重复结果中的[GSCore Sum]或使[Gscore Sum]不可见

http://i.stack.imgur.com/yte59.jpg http://i.stack.imgur.com/yte59.jpg

Not 100% sure what you require but have you tried adding the measure to the WHERE clause?: 不是100%确定您的要求,但是您是否尝试过将度量添加到WHERE子句中?:

select  
    non empty  
    (      
    [Dimension1].[Description].children,  
    [Dimension1].[GCode].members 
    )  
    on columns,  
    non empty
    (
    [Dimension2].[DCode].[DCode] *  
    [Dimension2].[DName].[DName] *   
    [Dimension2.[Barcode].[Barcode] *  
    [Dimension2].[LN].[LName] *  
    [Dimension2].[FN].[FName]   

)
on rows
from 
[MCube]
where 
(
[Measures].[GScore Sum],  
{[Dimension2].[HARC].[DCode].&[0000]}
) 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM