Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Pygments / tests / examplefiles / sql+jinja / example.sql
Size: Mime:
{%- set payment_methods = ["bank_transfer", "credit_card", "gift_card"] -%}

select
  order_id,
  {%- for payment_method in payment_methods %}
  sum(case when payment_method = '{{payment_method}}' then amount end) as {{payment_method}}_amount
  {%- if not loop.last %},{% endif -%}
  {% endfor %}
from {{ ref('raw_payments') }}
group by 1