dbt - Jinja in dbt
Given the following dbt model SQL snippet, what will be the value of
status for a row where score = 75?
SELECT
score,
CASE
WHEN score >= 90 THEN 'Excellent'
WHEN score >= 70 THEN 'Good'
ELSE 'Average'
END AS status
FROM scores_table