交互式报告:基于旧计算的新计算
Interactive report: New Computation based on old Computation
目前,我正在使用Apex 5.0的交互式报告来显示我的视图数据。我的视图有 A1、A2
列
现在,我定义新的计算 B1 = A1 * 2,B2 = A2 * 2。
之后如何用B1,B2定义新的Computation C1=B1*B2 ??
看来您可能需要使用
C1=(A1 * 2)*(A2 * 2)
你可以使用 with-clause 它可能会部分解决你的需求
查看文档http://www.dba-oracle.com/t_with_clause.htm
with cte as (
select t.value*2 as b1
)
select
cte.b1,
(cte.b1*2) as c1
from cte
目前,我正在使用Apex 5.0的交互式报告来显示我的视图数据。我的视图有 A1、A2
列现在,我定义新的计算 B1 = A1 * 2,B2 = A2 * 2。
之后如何用B1,B2定义新的Computation C1=B1*B2 ??
看来您可能需要使用
C1=(A1 * 2)*(A2 * 2)
你可以使用 with-clause 它可能会部分解决你的需求
查看文档http://www.dba-oracle.com/t_with_clause.htm
with cte as (
select t.value*2 as b1
)
select
cte.b1,
(cte.b1*2) as c1
from cte