dbt - Project Organization
Given the following dbt model code in the intermediate layer:
What will be the output columns of this model?
SELECT
customer_id,
COUNT(order_id) AS total_orders
FROM {{ ref('stg_orders') }}
GROUP BY customer_idWhat will be the output columns of this model?
