dbt - Jinja in dbt
Given the dbt model code:
What will be the output SQL if
SELECT * FROM orders WHERE order_date >= '{{ start_date }}' {% if is_active %}AND status = 'active'{% endif %}What will be the output SQL if
start_date = '2023-01-01' and is_active = False?