mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-02 19:58:59 +00:00
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
view: customer_facts {
|
|
derived_table: {
|
|
sql:
|
|
SELECT
|
|
customer_id,
|
|
SUM(sale_price) AS lifetime_spend
|
|
FROM
|
|
order
|
|
WHERE
|
|
{% condition order_region %} order.region {% endcondition %}
|
|
GROUP BY 1
|
|
;;
|
|
}
|
|
}
|