dbt - Jinja in dbt
What is the output SQL of this dbt snippet?
{% for col in ['first_name', 'last_name', 'email'] %}{{ col }}{% if not loop.last %} | {% endif %}{% endfor %}