dbt - Advanced Patterns
Given this metric definition in dbt YAML:
What will be the output of querying this metric if the 'orders' table has amounts: [100, 200, 300]?
metrics:
- name: total_revenue
model: ref('orders')
label: 'Total Revenue'
type: sum
sql: amountWhat will be the output of querying this metric if the 'orders' table has amounts: [100, 200, 300]?
