多粒度表达式

<< Click to Display Table of Contents >>

当前位置:  计算列函数 > 计算列函数列表 

多粒度表达式

Previous pageReturn to chapter overviewNext page

函数

语法

说明

举例

exclude

exclude([dim1[,dim2]...]::aggregate-expression])

此表达式从组件细节级别中减去维度来计算值

例如:

exclude(col['procuct']::sum(col['sales'])))

fixed

fixed([dim1[,dim2]...]::aggregate-expression])

此表达式使用指定的维度计算值,而不引用组件中的任何其他维度

例如:

fixed(col['procuct']::sum(col['sales']))

include

include([dim1[,dim2]...]::aggregate-expression])

此表达式使用指定的维度以及组件中的任何维度来计算值

例如:

include(col['procuct']::sum(col['sales'])))