从仪表板到后端查询的超集参数

问题描述 投票:0回答:0

我们有一个在元数据库中运行良好的场景,但现在我们必须在 apache 超集中实现相同的逻辑和设计。我们必须让用户能够将参数传递给超集中的后端查询,这在元数据库中非常简单,但现在我们在超集中苦苦挣扎。

select 
customer_id,
(
select balance from  where cust_id = customer_id and date < {PARAMETER}
) previous balance,
current balance
from balancesheet 
where customer_id in {PARAMETER}
and date >= {PARAMETER} and date <= {PARAMETER}

以上是我们试图在超集中实现但仍然能够找到正确方法的要求。

apache apache-superset
© www.soinside.com 2019 - 2024. All rights reserved.